diff options
author | fiaxh <git@mx.ax.lt> | 2017-11-17 16:06:54 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-11-17 17:24:03 +0100 |
commit | 2a514d0969f5c25d5e2d14421125a47df6b14974 (patch) | |
tree | fd95c1ee569b2e30dd3c7311b6fa32c7e46a50d0 /main/src/ui/add_conversation | |
parent | 48cd057bd569efdaf8f8a759365fa9079b732159 (diff) | |
download | dino-2a514d0969f5c25d5e2d14421125a47df6b14974.tar.gz dino-2a514d0969f5c25d5e2d14421125a47df6b14974.zip |
Fix unit tests using async + read message marker
Diffstat (limited to 'main/src/ui/add_conversation')
-rw-r--r-- | main/src/ui/add_conversation/conference_details_fragment.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/add_conversation/conference_details_fragment.vala b/main/src/ui/add_conversation/conference_details_fragment.vala index fbe9245d..027483f4 100644 --- a/main/src/ui/add_conversation/conference_details_fragment.vala +++ b/main/src/ui/add_conversation/conference_details_fragment.vala @@ -102,7 +102,7 @@ protected class ConferenceDetailsFragment : Box { stream_interactor.get_module(MucManager.IDENTITY).enter_error.connect(on_enter_error); notification_button.clicked.connect(() => { notification_revealer.set_reveal_child(false); }); ok_button.clicked.connect(() => { - ok_button.label = _("Joining..."); + ok_button.label = _("Joining…"); ok_button.sensitive = false; }); } |