Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Module:
category = "hardware"

def __init__(self, content_box):
keywords = _("display, screen, monitor, layout, resolution, dual, lcd")
keywords = _("display, screen, monitor, layout, resolution, dual, lcd, hidpi")
self.sidePage = SidePage(_("Display"), "cs-display", keywords, content_box, 650, module=self)
self.display_c_widget = None

Expand Down Expand Up @@ -93,4 +93,4 @@ def fractional_switch_toggled(self, switch, pspec):

def on_navigate_out_of_module(self):
if self.display_c_widget:
self.display_c_widget.hide()
self.display_c_widget.hide()
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Module:
category = "hardware"

def __init__(self, content_box):
keywords = _("mouse, touchpad, synaptic, double-click")
keywords = _("mouse, touchpad, synaptic, double-click, pointer")
sidePage = SidePage(_("Mouse and Touchpad"), "cs-mouse", keywords, content_box, module=self)
self.sidePage = sidePage

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class Module:
category = "appear"

def __init__(self, content_box):
self.keywords = _("themes, style")
self.keywords = _("themes, style, appearance")
self.icon = "cs-themes"
self.window = None
sidePage = SidePage(_("Themes"), self.icon, self.keywords, content_box, module=self)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Module:
comment = _("Manage window preferences")

def __init__(self, content_box):
keywords = _("windows, titlebar, edge, switcher, window list, attention, focus, tile, tiling, snap, snapping")
keywords = _("windows, titlebar, edge, switcher, window list, attention, focus, tile, tiling, snap, snapping, alttab")
sidePage = SidePage(_("Windows"), "cs-windows", keywords, content_box, module=self)
self.sidePage = sidePage

Expand Down
Loading