about summary refs log tree commit diff stats
path: root/run.lua
diff options
context:
space:
mode:
Diffstat (limited to 'run.lua')
-rw-r--r--run.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.lua b/run.lua
index 4c29860..bf21c5a 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])
@@ -110,7 +110,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()