diff options
Diffstat (limited to 'run.lua')
-rw-r--r-- | run.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run.lua b/run.lua index 17477ea..ea96a76 100644 --- a/run.lua +++ b/run.lua @@ -33,7 +33,7 @@ function run.initialize(arg) Text.redraw_all(Editor_state) end edit.check_locs(Editor_state) - love.window.setTitle('lines.love - '..Editor_state.filename) + love.window.setTitle('text.love - '..Editor_state.filename) if #arg > 1 then print('ignoring commandline args after '..arg[1]) @@ -117,7 +117,7 @@ function run.file_drop(file) file:close() Text.redraw_all(Editor_state) edit.check_locs(Editor_state) - love.window.setTitle('lines.love - '..Editor_state.filename) + love.window.setTitle('text.love - '..Editor_state.filename) end function run.draw() |