about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-08-19 17:05:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-08-19 17:05:41 -0700
commit13f67fa851acdba4563d0dca24701c5f97a6a55f (patch)
tree6d2f4fc01284104d3713b5acbca8cb43a00906a0
parentcbd8f678d226170047405982e94751eeb71cc696 (diff)
downloadtext.love-13f67fa851acdba4563d0dca24701c5f97a6a55f.tar.gz
regression: dropping files on the window
Also improve the test to catch this next time.
-rw-r--r--main.lua1
-rw-r--r--main_tests.lua2
2 files changed, 3 insertions, 0 deletions
diff --git a/main.lua b/main.lua
index de75045..64d0584 100644
--- a/main.lua
+++ b/main.lua
@@ -127,6 +127,7 @@ function App.filedropped(file)
   file:open('r')
   Editor_state.lines = load_from_file(file)
   file:close()
+  Text.redraw_all(Editor_state)
   edit.fixup_cursor(Editor_state)
   love.window.setTitle('lines.love - '..Editor_state.filename)
 end
diff --git a/main_tests.lua b/main_tests.lua
index b89c634..31605f0 100644
--- a/main_tests.lua
+++ b/main_tests.lua
@@ -19,6 +19,7 @@ end
 function test_drop_file()
   io.write('\ntest_drop_file')
   App.screen.init{width=Editor_state.left+300, height=300}
+  Editor_state = edit.initialize_test_state()
   App.filesystem['foo'] = 'abc\ndef\nghi\n'
   local fake_dropped_file = {
     opened = false,
@@ -41,6 +42,7 @@ function test_drop_file()
   check_eq(Editor_state.lines[1].data, 'abc', 'F - test_drop_file/lines:1')
   check_eq(Editor_state.lines[2].data, 'def', 'F - test_drop_file/lines:2')
   check_eq(Editor_state.lines[3].data, 'ghi', 'F - test_drop_file/lines:3')
+  edit.draw(Editor_state)
 end
 
 function test_drop_file_saves_previous()