diff options
author | fiaxh <git@lightrise.org> | 2021-02-10 18:32:39 -0600 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-02-10 18:32:39 -0600 |
commit | 0626bad8e9c2f7dfd4d8eccc86ec1e8bec6c7308 (patch) | |
tree | 8d0d550dc8b07ae05c30dce279243b00dd77b4b6 /main/src/ui/conversation_titlebar | |
parent | ad031ee33366aefc003ed3cac3a74079d963bfe9 (diff) | |
download | dino-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/conversation_titlebar')
-rw-r--r-- | main/src/ui/conversation_titlebar/occupants_entry.vala | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/main/src/ui/conversation_titlebar/occupants_entry.vala b/main/src/ui/conversation_titlebar/occupants_entry.vala index facaa50f..a316be20 100644 --- a/main/src/ui/conversation_titlebar/occupants_entry.vala +++ b/main/src/ui/conversation_titlebar/occupants_entry.vala @@ -47,7 +47,6 @@ class OccupantsWidget : MenuButton, Plugins.ConversationTitlebarWidget { if (conversation.type_ == Conversation.Type.GROUPCHAT) { OccupantMenu.View new_menu = new OccupantMenu.View(stream_interactor, conversation); set_popover(new_menu); - if (menu != null) menu.destroy(); menu = new_menu; } } |