Skip to content

Commit

Permalink
fix #1343
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Jun 20, 2024
1 parent fda60cd commit d1776ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/QuickAdd.vala
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public class Layouts.QuickAdd : Adw.Bin {
var content_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 6) {
valign = Gtk.Align.CENTER,
hexpand = true,
margin_top = 12,
margin_top = 9,
margin_bottom = 9,
margin_start = 12,
margin_end = 12
};
Expand All @@ -79,7 +80,7 @@ public class Layouts.QuickAdd : Adw.Bin {
height_request = 64,
left_margin = 14,
right_margin = 6,
top_margin = 6,
top_margin = 12,
wrap_mode = Gtk.WrapMode.WORD_CHAR,
hexpand = true
};
Expand Down Expand Up @@ -127,6 +128,7 @@ public class Layouts.QuickAdd : Adw.Bin {
quick_add_content.add_css_class ("card");
quick_add_content.add_css_class ("sidebar-card");
quick_add_content.append (content_box);
quick_add_content.append (new Gtk.Separator (Gtk.Orientation.HORIZONTAL));
quick_add_content.append (description_textview);
quick_add_content.append (item_labels);
quick_add_content.append (action_box);
Expand Down

0 comments on commit d1776ab

Please sign in to comment.