Merge pull request #10427 from Hinsbart/fix_padding
TextEdit: Fix line padding triggering too early.
This commit is contained in:
commit
9dd8d73482
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ void TextEdit::_notification(int p_what) {
|
||||||
int line_number_char_count = 0;
|
int line_number_char_count = 0;
|
||||||
|
|
||||||
{
|
{
|
||||||
int lc = text.size() + 1;
|
int lc = text.size();
|
||||||
cache.line_number_w = 0;
|
cache.line_number_w = 0;
|
||||||
while (lc) {
|
while (lc) {
|
||||||
cache.line_number_w += 1;
|
cache.line_number_w += 1;
|
||||||
|
|
Loading…
Reference in a new issue