mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue