diff options
author | fiaxh <git@lightrise.org> | 2019-05-26 22:18:08 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2019-06-22 00:56:50 +0200 |
commit | 2fb51df8a217a8dc11e10c38e06851f7b6263a3f (patch) | |
tree | fc80b3218560e24dc79238b55a1dfe9652706b52 /main/src/ui/chat_input/view.vala | |
parent | 68ab977287d30b942e7c1668052af015dd102d5b (diff) | |
download | dino-2fb51df8a217a8dc11e10c38e06851f7b6263a3f.tar.gz dino-2fb51df8a217a8dc11e10c38e06851f7b6263a3f.zip |
Hide encryption icon in public MUCs
Diffstat (limited to 'main/src/ui/chat_input/view.vala')
-rw-r--r-- | main/src/ui/chat_input/view.vala | 3 |
1 files changed, 2 insertions, 1 deletions
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"); |