Skip to content

Commit

Permalink
fix(power): use correct restart icon
Browse files Browse the repository at this point in the history
  • Loading branch information
git-f0x authored and mmstick committed Aug 15, 2024
1 parent b41f30e commit ee6f3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmic-applet-power/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ impl cosmic::Application for Power {
let power = row![
power_buttons("system-suspend-symbolic", fl!("suspend"))
.on_press(Message::Action(PowerAction::Suspend)),
power_buttons("system-restart-symbolic", fl!("restart"))
power_buttons("system-reboot-symbolic", fl!("restart"))
.on_press(Message::Action(PowerAction::Restart)),
power_buttons("system-shutdown-symbolic", fl!("shutdown"))
.on_press(Message::Action(PowerAction::Shutdown)),
Expand Down

0 comments on commit ee6f3fc

Please sign in to comment.