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/snapopen.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/snapopen.lua')
-rw-r--r-- | modules/textadept/snapopen.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/snapopen.lua b/modules/textadept/snapopen.lua index c8e5ff86..04e60002 100644 --- a/modules/textadept/snapopen.lua +++ b/modules/textadept/snapopen.lua @@ -133,7 +133,7 @@ function M.open(utf8_paths, filter, exclude_FILTER, depth) if #list >= M.MAX then gui.dialog('ok-msgbox', '--title', _L['File Limit Exceeded'], - '--informative-text', + '--text', string.format('%d %s %d', M.MAX, _L['files or more were found. Showing the first'], M.MAX), |