Skip to content
Closed
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
4 changes: 4 additions & 0 deletions usr/lib/lightdm-settings/lightdm-settings
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ class Application(Gtk.Application):
row.set_tooltip_text(_("Draw a grid of white dots on top of the background."))
section.add_row(row)

row = SettingsRow(Gtk.Label(label=_("Enable blur effect")), SettingsSwitch(keyfile, settings, "enable-blur"))
row.set_tooltip_text(_("Enable a blur effect on the background image."))
section.add_row(row)

section = page.add_section(_("Themes"))

row = SettingsRow(Gtk.Label(label=_("GTK theme")), SettingsCombo(keyfile, settings, "theme-name", self.get_gtk_themes(), "string", size_group))
Expand Down