mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 11:56:49 +01:00
Fix typo.
This commit is contained in:
parent
e9f7ef263f
commit
a38d3e5d61
@ -1001,11 +1001,11 @@ void TextEdit::_notification(int p_what) {
|
|||||||
int top_limit_y = 0;
|
int top_limit_y = 0;
|
||||||
int bottom_limit_y = get_size().height;
|
int bottom_limit_y = get_size().height;
|
||||||
if (readonly) {
|
if (readonly) {
|
||||||
top_limit_y += cache.style_readonly->get_margin(MARGIN_BOTTOM);
|
top_limit_y += cache.style_readonly->get_margin(MARGIN_TOP);
|
||||||
bottom_limit_y -= cache.style_readonly->get_margin(MARGIN_BOTTOM);
|
bottom_limit_y -= cache.style_readonly->get_margin(MARGIN_BOTTOM);
|
||||||
} else {
|
} else {
|
||||||
top_limit_y += cache.style_normal->get_margin(MARGIN_TOP);
|
top_limit_y += cache.style_normal->get_margin(MARGIN_TOP);
|
||||||
bottom_limit_y -= cache.style_normal->get_margin(MARGIN_TOP);
|
bottom_limit_y -= cache.style_normal->get_margin(MARGIN_BOTTOM);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Draw main text.
|
// Draw main text.
|
||||||
|
Loading…
Reference in New Issue
Block a user