diff options
author | 2013-02-26 23:29:29 -0500 | |
---|---|---|
committer | 2013-02-26 23:29:29 -0500 | |
commit | da1784e604f4683665aec54b2dc42dbbdbd98c3b (patch) | |
tree | 43dab3cb5f9f00a6ddcaf8ade09efa96f9df9fdb /modules/textadept/menu.lua | |
parent | 31b82a923889c134dfaa1cb6b6fd1e2e9aab8257 (diff) | |
download | textadept-da1784e604f4683665aec54b2dc42dbbdbd98c3b.tar.gz textadept-da1784e604f4683665aec54b2dc42dbbdbd98c3b.zip |
Removed useless gui.dialog() options for fileopen/filesave.
Diffstat (limited to 'modules/textadept/menu.lua')
-rw-r--r-- | modules/textadept/menu.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 904cce9f..7c481f4b 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -214,8 +214,8 @@ M.menubar = { {_L['Show _LuaDoc'], {utils.open_webpage, _HOME..'/doc/api/index.html'}}, SEPARATOR, {_L['_About'], - {gui.dialog, 'ok-msgbox', '--title', 'Textadept', '--informative-text', - _RELEASE, '--button1', _L['_OK'], '--no-cancel'}}, + {gui.dialog, 'ok-msgbox', '--title', 'Textadept', '--text', _RELEASE, + '--button1', _L['_OK'], '--no-cancel'}}, }, } |