diff options
author | fiaxh <git@mx.ax.lt> | 2018-04-24 14:59:28 +0200 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2018-04-30 11:03:59 +0200 |
commit | c1533f25775d3d9db5395107d6f3fd695b041926 (patch) | |
tree | 340a3da2c48cb9809a00b734c35c8172e9b89b6c /main/src/ui/unified_window.vala | |
parent | f0dd0e0c3af10f2772efd94aadbded38f3c155bb (diff) | |
download | dino-c1533f25775d3d9db5395107d6f3fd695b041926.tar.gz dino-c1533f25775d3d9db5395107d6f3fd695b041926.zip |
Redesign chat input + move file upload there
Diffstat (limited to 'main/src/ui/unified_window.vala')
-rw-r--r-- | main/src/ui/unified_window.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/unified_window.vala b/main/src/ui/unified_window.vala index 5995ea64..ac069697 100644 --- a/main/src/ui/unified_window.vala +++ b/main/src/ui/unified_window.vala @@ -75,8 +75,8 @@ public class UnifiedWindow : Window { filterable_conversation_list = new ConversationSelector.View(stream_interactor) { visible=true }; Grid grid = new Grid() { orientation=Orientation.VERTICAL, visible=true }; + grid.get_style_context().add_class("dino-conversation"); grid.add(conversation_frame); - grid.add(new Separator(Orientation.HORIZONTAL) { visible=true }); grid.add(chat_input); paned.set_position(300); |