aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/ui.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/ui.lua')
-rw-r--r--core/ui.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ui.lua b/core/ui.lua
index 1a4d8992..6aa19a96 100644
--- a/core/ui.lua
+++ b/core/ui.lua
@@ -425,7 +425,7 @@ events.connect(events.QUIT, function()
if #utf8_list == 0 then return end
local button = ui.dialogs.msgbox{
title = _L['Quit without saving?'], text = _L['The following buffers are unsaved:'],
- informative_text = table.concat(utf8_list, '\n'), icon = 'gtk-dialog-question',
+ informative_text = table.concat(utf8_list, '\n'), icon = 'dialog-question',
button1 = _L['Cancel'], button2 = _L['Quit without saving'],
width = CURSES and ui.size[1] - 2 or nil
}