Skip to content

Commit

Permalink
Fix accounts panel width (#1017)
Browse files Browse the repository at this point in the history
fixes #797
  • Loading branch information
sshikaree authored and fiaxh committed Jun 3, 2021
1 parent acda777 commit 4bdffa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/src/ui/util/label_hybrid.vala
Expand Up @@ -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) {
Expand Down

0 comments on commit 4bdffa9

Please sign in to comment.