From 2fb51df8a217a8dc11e10c38e06851f7b6263a3f Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sun, 26 May 2019 22:18:08 +0200 Subject: Hide encryption icon in public MUCs --- main/src/ui/chat_input/view.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main/src/ui/chat_input/view.vala') diff --git a/main/src/ui/chat_input/view.vala b/main/src/ui/chat_input/view.vala index ddf1b3c0..cefe3fb1 100644 --- a/main/src/ui/chat_input/view.vala +++ b/main/src/ui/chat_input/view.vala @@ -30,7 +30,7 @@ public class View : Box { [GtkChild] private Box outer_box; [GtkChild] private Button file_button; [GtkChild] private Separator file_separator; - private EncryptionButton encryption_widget = new EncryptionButton() { margin_top=3, valign=Align.START, visible=true }; + private EncryptionButton encryption_widget; public View init(StreamInteractor stream_interactor) { this.stream_interactor = stream_interactor; @@ -38,6 +38,7 @@ public class View : Box { occupants_tab_completor = new OccupantsTabCompletor(stream_interactor, text_input); smiley_converter = new SmileyConverter(stream_interactor, text_input); edit_history = new EditHistory(text_input, GLib.Application.get_default()); + encryption_widget = new EncryptionButton(stream_interactor) { margin_top=3, valign=Align.START, visible=true }; file_button.clicked.connect(() => { PreviewFileChooserNative chooser = new PreviewFileChooserNative("Select file", get_toplevel() as Gtk.Window, FileChooserAction.OPEN, "Select", "Cancel"); -- cgit v1.2.3-54-g00ecf