keyboard: Fix EmojiSelection:delta range
The setter clamps the values to the range (-width, width), so we must not limit the property to positive values. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/698
This commit is contained in:
parent
e5cde4700f
commit
3768b6b701
@ -574,7 +574,7 @@ var EmojiPager = GObject.registerClass({
|
||||
'delta': GObject.ParamSpec.int(
|
||||
'delta', 'delta', 'delta',
|
||||
GObject.ParamFlags.READWRITE,
|
||||
0, GLib.MAXINT32, 0)
|
||||
GLib.MININT32, GLib.MAXINT32, 0)
|
||||
},
|
||||
Signals: {
|
||||
'emoji': { param_types: [GObject.TYPE_STRING] },
|
||||
|
Loading…
Reference in New Issue
Block a user