Skip to content

Commit b2277bf

Browse files
committed
Switch to XApp symbolic icons
1 parent df2e8ee commit b2277bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cinnamon-session-quit/cinnamon-session-quit.glade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
<property name="can-focus">False</property>
194194
<property name="halign">end</property>
195195
<property name="margin-start">20</property>
196-
<property name="icon-name">system-shutdown-symbolic</property>
196+
<property name="icon-name">xapp-shutdown-symbolic</property>
197197
<property name="icon_size">6</property>
198198
</object>
199199
<packing>

cinnamon-session-quit/cinnamon-session-quit.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def run_dialog(self):
264264
self.button_switchuser.set_visible(can_switch_user)
265265
self.button_logout.set_visible(True)
266266
default_button = self.button_logout
267-
self.action_icon.set_from_icon_name("system-log-out-symbolic", Gtk.IconSize.DIALOG)
267+
self.action_icon.set_from_icon_name("xapp-log-out-symbolic", Gtk.IconSize.DIALOG)
268268
self.window.set_icon_name("system-log-out")
269269
elif self.mode == Action.SHUTDOWN:
270270
self.dialog_label.set_text(_("Shut down this system now?"))
@@ -273,7 +273,7 @@ def run_dialog(self):
273273
self.button_restart.set_visible(can_restart)
274274
self.button_shutdown.set_visible(can_stop)
275275
default_button = self.button_shutdown
276-
self.action_icon.set_from_icon_name("system-shutdown-symbolic", Gtk.IconSize.DIALOG)
276+
self.action_icon.set_from_icon_name("xapp-shutdown-symbolic", Gtk.IconSize.DIALOG)
277277
self.window.set_icon_name("system-shutdown")
278278
elif self.mode == Action.RESTART:
279279
if not can_restart:
@@ -283,7 +283,7 @@ def run_dialog(self):
283283
self.dialog_label.set_text(_("Restart this system now?"))
284284
self.button_restart.set_visible(True)
285285
default_button = self.button_restart
286-
self.action_icon.set_from_icon_name("system-reboot-symbolic", Gtk.IconSize.DIALOG)
286+
self.action_icon.set_from_icon_name("xapp-reboot-symbolic", Gtk.IconSize.DIALOG)
287287
self.window.set_icon_name("system-reboot")
288288

289289
default_button.get_style_context().add_class("destructive-action")

0 commit comments

Comments
 (0)