mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 01:05:58 +03:00
DisplaySettings: Rename "virtual desktops" => "workspaces"
This commit is contained in:
parent
67c0a2c5df
commit
05faca91d5
Notes:
sideshowbarker
2024-07-18 07:40:39 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/05faca91d52
@ -10,7 +10,7 @@
|
||||
margins: [16, 24, 16, 6]
|
||||
}
|
||||
|
||||
title: "Virtual Desktops"
|
||||
title: "Workspaces"
|
||||
shrink_to_fit: true
|
||||
|
||||
@GUI::Widget {
|
||||
@ -60,12 +60,12 @@
|
||||
margins: [6, 6, 6, 6]
|
||||
}
|
||||
@GUI::Label {
|
||||
text: "Use the Ctrl+Alt+Arrow hotkeys to move between virtual desktops."
|
||||
text: "Use the Ctrl+Alt+Arrow hotkeys to move between workspaces."
|
||||
text_alignment: "TopLeft"
|
||||
word_wrap: true
|
||||
}
|
||||
@GUI::Label {
|
||||
text: "Use the Ctrl+Shift+Alt+Arrow hotkeys to move between virtual desktops and move the active window."
|
||||
text: "Use the Ctrl+Shift+Alt+Arrow hotkeys to move between\nworkspaces and move the active window."
|
||||
text_alignment: "TopLeft"
|
||||
word_wrap: true
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ int main(int argc, char** argv)
|
||||
auto& background_settings_widget = tab_widget.add_tab<DisplaySettings::BackgroundSettingsWidget>("Background");
|
||||
auto& font_settings_widget = tab_widget.add_tab<DisplaySettings::FontSettingsWidget>("Fonts");
|
||||
auto& monitor_settings_widget = tab_widget.add_tab<DisplaySettings::MonitorSettingsWidget>("Monitor");
|
||||
auto& desktop_settings_widget = tab_widget.add_tab<DisplaySettings::DesktopSettingsWidget>("Desktop");
|
||||
auto& desktop_settings_widget = tab_widget.add_tab<DisplaySettings::DesktopSettingsWidget>("Workspaces");
|
||||
tab_widget.on_change = [&](auto& widget) {
|
||||
monitor_settings_widget.show_screen_numbers(&widget == &monitor_settings_widget);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user