Browse Source

Fix script editor scrollbar disappear issue

marynate 11 years ago
parent
commit
3164784ca3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scene/gui/text_edit.cpp

+ 1 - 1
scene/gui/text_edit.cpp

@@ -336,7 +336,7 @@ void TextEdit::_update_scrollbars() {
 		v_scroll->set_val(cursor.line_ofs);
 		v_scroll->set_val(cursor.line_ofs);
 
 
 	}  else {
 	}  else {
-
+		cursor.line_ofs = 0;
 		v_scroll->hide();
 		v_scroll->hide();
 	}
 	}