Skip to content

Commit aaf86e4

Browse files
authored
active border radius minimum zero (#1523)
* 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
1 parent f0e9232 commit aaf86e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

schemas/org.gnome.shell.extensions.pop-shell.gschema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

src/panel_settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class Indicator {
6969
_("Active Border Radius"),
7070
{
7171
value: ext.settings.active_hint_border_radius(),
72-
min: 5,
72+
min: 0,
7373
max: 30
7474
},
7575
(value) => {

0 commit comments

Comments
 (0)