aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/file_io.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/file_io.lua')
-rw-r--r--core/file_io.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/file_io.lua b/core/file_io.lua
index 10e9b158..9bbef6cb 100644
--- a/core/file_io.lua
+++ b/core/file_io.lua
@@ -226,7 +226,7 @@ local function close(buffer, force)
if buffer.filename then filename = filename:iconv('UTF-8', _CHARSET) end
local button = ui.dialogs.msgbox{
title = _L['Close without saving?'], text = _L['There are unsaved changes in'],
- informative_text = filename, icon = 'gtk-dialog-question', button1 = _L['Cancel'],
+ informative_text = filename, icon = 'dialog-question', button1 = _L['Cancel'],
button2 = _L['Close without saving'],
width = CURSES and #filename > 40 and ui.size[1] - 2 or nil
}
@@ -282,7 +282,7 @@ events.connect(events.FILE_CHANGED, function(filename)
title = _L['Reload?'], text = _L['Reload modified file?'],
informative_text = string.format('"%s"\n%s', filename:iconv('UTF-8', _CHARSET),
_L['has been modified. Reload it?']), -- LuaFormatter
- icon = 'gtk-dialog-question', button1 = _L['Yes'], button2 = _L['No'],
+ icon = 'dialog-question', button1 = _L['Yes'], button2 = _L['No'],
width = CURSES and #filename > 40 and ui.size[1] - 2 or nil
}
if button == 1 then buffer:reload() end
@@ -406,7 +406,7 @@ function io.quick_open(paths, filter, opts)
ui.dialogs.msgbox{
title = _L['File Limit Exceeded'], text = string.format('%d %s %d', io.quick_open_max,
_L['files or more were found. Showing the first'], io.quick_open_max),
- icon = 'gtk-dialog-info'
+ icon = 'dialog-information'
}
end
local options = {