diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2024-01-12 03:33:13 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2024-01-12 03:35:22 -0800 |
commit | 5d4fd4aa93918ae2139a581bae4d9f9579359281 (patch) | |
tree | c7f6f9e0bafa97117745e2b882c03f7cbc1ba02c | |
parent | 57fb2d4b57db3fef5245d40e16f5ea811c3806a4 (diff) | |
download | view.love-5d4fd4aa93918ae2139a581bae4d9f9579359281.tar.gz |
fix still more issues with the previous scenario
- source editor always expects relative paths - refresh mocked data There's still one issue after this: the font size saved in the config file is the one we use in tests. More broadly, Editor_state is completely wrong. Ideally I'd just not save any settings for the source editor if the tests fail.
-rw-r--r-- | source.lua | 1 | ||||
-rw-r--r-- | source_edit.lua | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source.lua b/source.lua index 1aa1f74..a4b3603 100644 --- a/source.lua +++ b/source.lua @@ -271,6 +271,7 @@ function source.settings() if Settings == nil then Settings = {} end if Settings.source == nil then Settings.source = {} end Settings.source.x, Settings.source.y, Settings.source.displayindex = App.screen.position() + App.screen.width, App.screen.height = App.screen.size() File_navigation.cursors[Editor_state.filename] = {cursor1=Editor_state.cursor1, screen_top1=Editor_state.screen_top1} return { x=Settings.source.x, y=Settings.source.y, displayindex=Settings.source.displayindex, diff --git a/source_edit.lua b/source_edit.lua index f58d7e3..e2f9bd0 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -94,7 +94,7 @@ function edit.initialize_state(top, left, right, font, font_height, line_height) right = math.floor(right), width = right-left, - filename = love.filesystem.getSourceBaseDirectory()..'/lines.txt', -- '/' should work even on Windows + filename = 'run.lua', next_save = nil, -- undo |