Skip to content

Commit 369b03e

Browse files
committed
icons: Use the correct name for the reboot icon
According to the icon naming spec, the correct name to use for a reboot icon is `system-reboot` (and thus, `system-reboot-symbolic` for symbolic). Before this, we were using `system-restart-symbolic`, and had to provide an icon for this. This change increases compatibility with other icon themes, including Breeze, while retaining our own icon in case a theme does not provide it. Signed-off-by: Evan Maddock <maddock.evan@vivaldi.net>
1 parent bfa86bb commit 369b03e

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

data/icons/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ actions_icons = [
55
join_paths('.', 'actions', 'pane-hide-symbolic.svg'),
66
join_paths('.', 'actions', 'pane-show-symbolic.svg'),
77
join_paths('.', 'actions', 'system-log-out-symbolic.svg'),
8-
join_paths('.', 'actions', 'system-restart-symbolic.svg'),
8+
join_paths('.', 'actions', 'system-reboot-symbolic.svg'),
99
join_paths('.', 'actions', 'system-suspend-symbolic.svg'),
1010
join_paths('.', 'actions', 'system-hibernate-symbolic.svg'),
1111
]

src/dialogs/power/window.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ namespace Budgie {
9898
hibernate_button.clicked.connect(hibernate);
9999
#endif
100100

101-
reboot_button = new DialogButton(_("_Reboot"), "system-restart-symbolic");
101+
reboot_button = new DialogButton(_("_Reboot"), "system-reboot-symbolic");
102102
reboot_button.clicked.connect(reboot);
103103

104104
shutdown_button = new DialogButton(_("Shut_down"), "system-shutdown-symbolic");

src/panel/applets/user-indicator/UserIndicatorWindow.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public class UserIndicatorWindow : Budgie.Popover {
109109
lock_menu = new IndicatorItem(_("Lock"), "system-lock-screen-symbolic", false);
110110
suspend_menu = new IndicatorItem(_("Suspend"), "system-suspend-symbolic", false);
111111
hibernate_menu = new IndicatorItem(_("Hibernate"), "system-hibernate-symbolic", false);
112-
reboot_menu = new IndicatorItem(_("Restart"), "system-restart-symbolic", false);
112+
reboot_menu = new IndicatorItem(_("Restart"), "system-reboot-symbolic", false);
113113
shutdown_menu = new IndicatorItem(_("Shutdown"), "system-shutdown-symbolic", false);
114114

115115
// Adding stuff

0 commit comments

Comments
 (0)