chore: update libcosmic

This commit is contained in:
Ashley Wulber 2025-10-03 14:55:46 -04:00 committed by Ashley Wulber
parent 81b07b513d
commit 426fab97b3
6 changed files with 100 additions and 104 deletions

View file

@ -564,6 +564,7 @@ fn all_system_actions() -> &'static [Action] {
Action::System(SystemAction::AppLibrary),
Action::System(SystemAction::BrightnessDown),
Action::System(SystemAction::BrightnessUp),
Action::System(SystemAction::DisplayToggle),
Action::System(SystemAction::HomeFolder),
Action::System(SystemAction::KeyboardBrightnessDown),
Action::System(SystemAction::KeyboardBrightnessUp),
@ -722,6 +723,7 @@ fn localize_action(action: &Action) -> String {
fl!("system-shortcut", "window-switcher-previous")
}
SystemAction::WorkspaceOverview => fl!("system-shortcut", "workspace-overview"),
SystemAction::DisplayToggle => fl!("system-shortcut", "display-toggle"),
},
Action::ZoomIn => fl!("zoom-in"),

View file

@ -93,6 +93,7 @@ impl page::AutoBind<crate::pages::Message> for Page {}
pub const fn actions() -> &'static [Action] {
&[
Action::System(SystemAction::AppLibrary),
Action::System(SystemAction::DisplayToggle),
Action::System(SystemAction::Launcher),
Action::System(SystemAction::WorkspaceOverview),
Action::System(SystemAction::WindowSwitcher),