aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/add_conversation/select_jid_fragment.vala
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2021-02-10 18:32:39 -0600
committerfiaxh <git@lightrise.org>2021-02-10 18:32:39 -0600
commit0626bad8e9c2f7dfd4d8eccc86ec1e8bec6c7308 (patch)
tree8d0d550dc8b07ae05c30dce279243b00dd77b4b6 /main/src/ui/add_conversation/select_jid_fragment.vala
parentad031ee33366aefc003ed3cac3a74079d963bfe9 (diff)
downloaddino-0626bad8e9c2f7dfd4d8eccc86ec1e8bec6c7308.tar.gz
dino-0626bad8e9c2f7dfd4d8eccc86ec1e8bec6c7308.zip
Reduce use of Widget.destroy()
On non-toplevel windows, use Container.remove() instead of Widget.destroy() Needed for migration to GTK4 https://developer.gnome.org/gtk4/unstable/gtk-migrating-3-to-4.html#id-1.7.4.3.17
Diffstat (limited to 'main/src/ui/add_conversation/select_jid_fragment.vala')
-rw-r--r--main/src/ui/add_conversation/select_jid_fragment.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/add_conversation/select_jid_fragment.vala b/main/src/ui/add_conversation/select_jid_fragment.vala
index f0170cfb..2035b14b 100644
--- a/main/src/ui/add_conversation/select_jid_fragment.vala
+++ b/main/src/ui/add_conversation/select_jid_fragment.vala
@@ -48,7 +48,7 @@ public class SelectJidFragment : Gtk.Box {
public void set_filter(string str) {
if (entry.text != str) entry.text = str;
- foreach (AddListRow row in added_rows) row.destroy();
+ foreach (AddListRow row in added_rows) filterable_list.remove(row);
added_rows.clear();
string[] ? values = str == "" ? null : str.split(" ");