mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 05:38:01 +01:00
Fix :set number!=...
This commit is contained in:
@@ -2288,7 +2288,8 @@ var Buffer = Module("buffer", {
|
||||
|
||||
setter: function setter(value) {
|
||||
prefs.set(this.PREF, value > 1);
|
||||
return value > 1 ? value : this.globalValue;
|
||||
if (value > 1)
|
||||
return value;
|
||||
},
|
||||
|
||||
validator: function (value) value > 0
|
||||
|
||||
Reference in New Issue
Block a user