diff options
author | mimi89999 <michel@lebihan.pl> | 2021-01-19 13:48:35 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-01-21 15:31:12 +0100 |
commit | f94d8f56c79b0fe792b471a2423edb7beb4abd89 (patch) | |
tree | bab89af9a37eae2c71de5a745f69706c5c22fc1d /main | |
parent | f2662b21c194e40d31d5ffc6d9e826a439526e6c (diff) | |
download | dino-f94d8f56c79b0fe792b471a2423edb7beb4abd89.tar.gz dino-f94d8f56c79b0fe792b471a2423edb7beb4abd89.zip |
Ellipsize long titles
Diffstat (limited to 'main')
-rw-r--r-- | main/src/ui/conversation_titlebar/conversation_titlebar.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/conversation_titlebar/conversation_titlebar.vala b/main/src/ui/conversation_titlebar/conversation_titlebar.vala index 1302bdfa..60d8286b 100644 --- a/main/src/ui/conversation_titlebar/conversation_titlebar.vala +++ b/main/src/ui/conversation_titlebar/conversation_titlebar.vala @@ -29,7 +29,7 @@ public class ConversationTitlebarNoCsd : ConversationTitlebar, Gtk.Box { } private Box widgets_box = new Box(Orientation.HORIZONTAL, 0) { margin_start=15, valign=Align.END, visible=true }; - private Label title_label = new Label("") { visible=true }; + private Label title_label = new Label("") { ellipsize=EllipsizeMode.END, visible=true }; private Label subtitle_label = new Label("") { use_markup=true, ellipsize=EllipsizeMode.END, visible=false }; construct { |