aboutsummaryrefslogtreecommitdiff
path: root/client/src/ui/conversation_titlebar.vala
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-03-10 18:07:28 +0100
committerfiaxh <git@mx.ax.lt>2017-03-10 18:07:28 +0100
commit4c48c5c16d5f5b010c2e5dfb1affcb59f937510c (patch)
treed4a75a005fcfa823b1716d8bfbe3d862f3680905 /client/src/ui/conversation_titlebar.vala
parentcf51e1dee22273366700c41a185c4bea343dddfe (diff)
downloaddino-4c48c5c16d5f5b010c2e5dfb1affcb59f937510c.tar.gz
dino-4c48c5c16d5f5b010c2e5dfb1affcb59f937510c.zip
Reformat [GtkChild]
Diffstat (limited to 'client/src/ui/conversation_titlebar.vala')
-rw-r--r--client/src/ui/conversation_titlebar.vala15
1 files changed, 7 insertions, 8 deletions
diff --git a/client/src/ui/conversation_titlebar.vala b/client/src/ui/conversation_titlebar.vala
index 25304e1a..0f34c785 100644
--- a/client/src/ui/conversation_titlebar.vala
+++ b/client/src/ui/conversation_titlebar.vala
@@ -2,20 +2,18 @@ using Gtk;
using Dino.Entities;
+namespace Dino.Ui {
+
[GtkTemplate (ui = "/org/dino-im/conversation_titlebar.ui")]
-public class Dino.Ui.ConversationTitlebar : Gtk.HeaderBar {
+public class ConversationTitlebar : Gtk.HeaderBar {
- [GtkChild]
- private MenuButton menu_button;
+ [GtkChild] private MenuButton menu_button;
+ [GtkChild] private MenuButton encryption_button;
+ [GtkChild] private MenuButton groupchat_button;
- [GtkChild]
- private MenuButton encryption_button;
private RadioButton? button_unencrypted;
private RadioButton? button_pgp;
- [GtkChild]
- private MenuButton groupchat_button;
-
private StreamInteractor stream_interactor;
private Conversation? conversation;
@@ -122,3 +120,4 @@ public class Dino.Ui.ConversationTitlebar : Gtk.HeaderBar {
}
}
+} \ No newline at end of file