We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aa7d44 commit 732c0afCopy full SHA for 732c0af
src/Plotinus.vala
@@ -80,13 +80,15 @@ class Plotinus.Plotinus : Object {
80
scrolled_window.add(command_list);
81
82
var header_bar = new Gtk.HeaderBar();
83
+ header_bar.spacing = 0;
84
window.set_titlebar(header_bar);
85
86
var search_entry = new Gtk.SearchEntry();
87
// TODO: This is currently an unfortunate necessity as stable versions of GTK+
88
// do not support expanding packed widgets. The fix will be in a future release
89
// (see https://bugzilla.gnome.org/show_bug.cgi?id=724332).
90
search_entry.set_size_request(600, -1);
91
+ search_entry.margin = 4;
92
header_bar.custom_title = search_entry;
93
94
search_entry.changed.connect(() => {
0 commit comments