1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

DisplaySettings: Update Workspaces tab GML

Removes some verbiage and arranges things consistent with other
settings dialogs.

Ideally we shouldn't litter UIs with shortcuts, tips, tricks,
self-evident or redundant descriptions, etc, so this can be
refined again in the future once there's an official way to expose/
customize keyboard shortcuts.
This commit is contained in:
thankyouverycool 2022-08-16 08:08:30 -04:00 committed by Andreas Kling
parent 2d706ba753
commit 71a437b512
2 changed files with 48 additions and 49 deletions

View file

@ -33,6 +33,9 @@ void DesktopSettingsWidget::create_frame()
m_workspace_columns_spinbox->on_change = [&](auto) {
set_modified(true);
};
auto& keyboard_shortcuts_label = *find_descendant_of_type_named<GUI::Label>("keyboard_shortcuts_label");
keyboard_shortcuts_label.set_text("\xE2\x84\xB9\tCtrl+Alt+{Shift}+Arrows moves between workspaces");
}
void DesktopSettingsWidget::load_current_settings()