diff options
author | Sergey <sshikaree@zoho.com> | 2021-03-24 19:45:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 17:45:54 +0100 |
commit | 45c0ac410433089cf973854c146b6b22df4a1a1c (patch) | |
tree | 526db7ab7b8298d6371aa9354a36f0af7809be06 /main/src/ui/util | |
parent | 7ce49d7d68f19fb49a33e907485d83da2c9131a3 (diff) | |
download | dino-45c0ac410433089cf973854c146b6b22df4a1a1c.tar.gz dino-45c0ac410433089cf973854c146b6b22df4a1a1c.zip |
Fix accounts panel width (#1017)
fixes #797
Diffstat (limited to 'main/src/ui/util')
-rw-r--r-- | main/src/ui/util/label_hybrid.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/util/label_hybrid.vala b/main/src/ui/util/label_hybrid.vala index 8ca56316..b992f169 100644 --- a/main/src/ui/util/label_hybrid.vala +++ b/main/src/ui/util/label_hybrid.vala @@ -5,7 +5,7 @@ namespace Dino.Ui.Util { public class LabelHybrid : Stack { - public Label label = new Label("") { visible=true }; + public Label label = new Label("") { visible=true, max_width_chars=1, ellipsize=Pango.EllipsizeMode.END }; protected Button button = new Button() { relief=ReliefStyle.NONE, visible=true }; internal virtual void init(Widget widget) { |