Skip to content

Commit

Permalink
Enable ellipsize for Style boxes in BDS (#403)
Browse files Browse the repository at this point in the history
* Enable ellipsize for Style boxes in BDS

* Undo change for testing
  • Loading branch information
serebit committed Jul 10, 2023
1 parent 87c035b commit daec799
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/panel/settings/settings_style.vala
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ namespace Budgie {

/* Sort out renderers for all of our dropdowns */
var render = new Gtk.CellRendererText();
render.width_chars = 1;
render.ellipsize = Pango.EllipsizeMode.END;
combobox_gtk.pack_start(render, true);
combobox_gtk.add_attribute(render, "text", 0);
combobox_icon.pack_start(render, true);
Expand Down

0 comments on commit daec799

Please sign in to comment.