mirror of
https://gitlab.com/Syping/luaengineapp.git
synced 2024-12-22 20:05:30 +01:00
improve naming
This commit is contained in:
parent
52cef11986
commit
a6b8d15d19
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ function editorSave()
|
||||||
end
|
end
|
||||||
|
|
||||||
function editorSaveAs()
|
function editorSaveAs()
|
||||||
local selectedFile = showFileDialog(SaveFileDialog, "Save...", "All files (*)", mainWindow)
|
local selectedFile = showFileDialog(SaveFileDialog, "Save as...", "All files (*)", mainWindow)
|
||||||
if not (selectedFile == nil) then
|
if not (selectedFile == nil) then
|
||||||
local file = io.open(selectedFile, "w")
|
local file = io.open(selectedFile, "w")
|
||||||
if not (file == nil) then
|
if not (file == nil) then
|
||||||
|
|
Loading…
Reference in a new issue