keyboard: Fix suggestions box
The suggestions box actor was not being correctly populated. Make it correctly use the St.BoxLayout add_child() method. Fixes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3422 Fixes: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2965 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1806>
This commit is contained in:
parent
62e40a1350
commit
f76e6877c7
@ -198,7 +198,7 @@ class Suggestions extends St.BoxLayout {
|
|||||||
add(word, callback) {
|
add(word, callback) {
|
||||||
let button = new St.Button({ label: word });
|
let button = new St.Button({ label: word });
|
||||||
button.connect('clicked', callback);
|
button.connect('clicked', callback);
|
||||||
this.add(button);
|
this.add_child(button);
|
||||||
}
|
}
|
||||||
|
|
||||||
clear() {
|
clear() {
|
||||||
|
Loading…
Reference in New Issue
Block a user