aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/ui.lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-02-27 22:01:14 -0500
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2022-02-27 22:01:14 -0500
commit6a6b7cccbb2fd21bf040729b99e18aa3a98fe8ad (patch)
tree55a6546a89a8c3a44f547349684b5e502f8bedf6 /core/ui.lua
parent35a77b009b2577b1e41e00f3b19cedb99597b5de (diff)
Use icon names from the Free Desktop Icon Naming Specification.
Requires latest gtDialog.
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
}