From 9c736af765d8c62838440afbfd2ad7ee78b44951 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sun, 9 Oct 2022 11:38:59 +0200 Subject: Fix regression with channel join button not getting sensitive fixes #1284 --- main/src/ui/add_conversation/conference_details_fragment.vala | 3 +++ 1 file changed, 3 insertions(+) (limited to 'main/src/ui') diff --git a/main/src/ui/add_conversation/conference_details_fragment.vala b/main/src/ui/add_conversation/conference_details_fragment.vala index 618d19ab..83d5b507 100644 --- a/main/src/ui/add_conversation/conference_details_fragment.vala +++ b/main/src/ui/add_conversation/conference_details_fragment.vala @@ -31,6 +31,7 @@ protected class ConferenceDetailsFragment : Box { jid_label.label = value; jid_entry.text = value; jid_stack.set_visible_child_name("label"); + check_if_done(); } } public string? nick { @@ -39,6 +40,7 @@ protected class ConferenceDetailsFragment : Box { nick_label.label = value ?? ""; nick_entry.text = value ?? ""; nick_stack.set_visible_child_name("label"); + check_if_done(); } } public string? password { @@ -116,6 +118,7 @@ protected class ConferenceDetailsFragment : Box { nick_entry_controller.key_released.connect(() => { check_if_done(); }); nick_entry.add_controller(nick_entry_controller); + check_if_done(); notification_button.clicked.connect(() => { notification_revealer.set_reveal_child(false); }); -- cgit v1.2.3-54-g00ecf