浏览代码

Make CdbTable.goto2 scroll properly when going inside separators

Leonardo Jeanteur 1 年之前
父节点
当前提交
2981fee82a
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      hide/view/CdbTable.hx

+ 4 - 1
hide/view/CdbTable.hx

@@ -121,7 +121,10 @@ class CdbTable extends hide.ui.View<{}> {
 			}
 
 		}
-		haxe.Timer.delay(editor.focus,1);
+		haxe.Timer.delay(function() {
+			editor.focus();
+			editor.cursor.update();
+		}, 1);
 		/*for (i in 0...coords.length) {
 			var c = coords[i];
 			editor.cursor.set(curTable, c.column, c.line);