Skip to content

Commit

Permalink
- Increase margin on Gtk.TreeExpanders in font list - Issue #373
Browse files Browse the repository at this point in the history
  • Loading branch information
JerryCasiano committed Jul 14, 2024
1 parent 7c1e293 commit b57d28f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/font-manager/FontList.vala
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ namespace FontManager {
Gtk.ListItem list_item = (Gtk.ListItem) item;
var list_row = treemodel.get_row(list_item.get_position());
var tree_expander = (Gtk.TreeExpander) list_item.get_child();
tree_expander.margin_start = 2;
tree_expander.margin_start = 6;
tree_expander.set_list_row(list_row);
var row = (FontListRow) tree_expander.get_child();
Object? _item = list_row.get_item();
Expand Down
2 changes: 1 addition & 1 deletion src/font-manager/ui/font-manager-font-list-controls.ui
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<object class="GtkExpander" id="expander">
<property name="halign">center</property>
<property name="margin-end">2</property>
<property name="margin-start">2</property>
<property name="margin-start">6</property>
<property name="tooltip-text" translatable="yes">Expand all</property>
<property name="valign">center</property>
<signal name="activate" handler="on_expander_activated" after="yes"/>
Expand Down

0 comments on commit b57d28f

Please sign in to comment.