Skip to content

Commit

Permalink
active border radius minimum zero (#1523)
Browse files Browse the repository at this point in the history
* active border radius minimum zero

This changes the lower bound for the Active Border Radius to zero per user request #1522. This does not change the default value.

* gsettings min set to 0
  • Loading branch information
n3m0-22 authored Sep 29, 2022
1 parent f0e9232 commit aaf86e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schemas/org.gnome.shell.extensions.pop-shell.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<key type="u" name="active-hint-border-radius">
<default>5</default>
<range min="5" max="30"/>
<range min="0" max="30"/>
<summary>Border radius for active window hint, in pixels</summary>
</key>

Expand Down
2 changes: 1 addition & 1 deletion src/panel_settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Indicator {
_("Active Border Radius"),
{
value: ext.settings.active_hint_border_radius(),
min: 5,
min: 0,
max: 30
},
(value) => {
Expand Down

0 comments on commit aaf86e4

Please sign in to comment.