about summary refs log tree commit diff stats
path: root/main_tests.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-18 00:03:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-18 00:03:19 -0700
commitc15ee0b4a06e68f095c3667d62305c3178a68562 (patch)
treee25b63a4031ecd78929b0ef1bc69b342944511fe /main_tests.lua
parent97bbc7da7f9ccb8bc6cb9c6506c746b1e89730e8 (diff)
downloadtext.love-c15ee0b4a06e68f095c3667d62305c3178a68562.tar.gz
correct location of the line width slider
Diffstat (limited to 'main_tests.lua')
-rw-r--r--main_tests.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/main_tests.lua b/main_tests.lua
index f9dac71..2096464 100644
--- a/main_tests.lua
+++ b/main_tests.lua
@@ -16,8 +16,8 @@ function test_adjust_line_width()
   App.screen.init{width=Margin_left+300, height=300}
   Line_width = 256
   App.draw()  -- initialize button
-  App.run_after_mouse_press(Margin_left+256, Margin_top-3, 1)
-  App.mouse_move(Margin_left+200, 37)
+  App.run_after_mouse_press(256, Margin_top-3, 1)
+  App.mouse_move(200, 37)
   -- no change for some time
   App.wait_fake_time(0.01)
   App.update(0)