diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-01-13 21:31:14 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-01-13 21:38:32 +0100 |
commit | 13ae4810ca857ae018d9cc34b5181d476cd3316a (patch) | |
tree | 5d145cf7dfe1d5df846ff61052d2e30d741e191a /fiv.c | |
parent | 222ba6a0601e37dc9116109316f8d31b0721c351 (diff) | |
download | fiv-13ae4810ca857ae018d9cc34b5181d476cd3316a.tar.gz fiv-13ae4810ca857ae018d9cc34b5181d476cd3316a.tar.xz fiv-13ae4810ca857ae018d9cc34b5181d476cd3316a.zip |
Apply some bits of GNOME HIG 1.0
Diffstat (limited to 'fiv.c')
-rw-r--r-- | fiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -437,7 +437,7 @@ show_about_dialog(GtkWidget *parent) gtk_text_buffer_insert_markup(buffer, &iter, formatted, -1); g_free(formatted); - enum { SUBBOX_MARGIN = 12 /* Roughly matches. */ }; + enum { SUBBOX_MARGIN = 12 /* GNOME HIG 1.0 */ }; GtkWidget *subbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 12); gtk_widget_set_margin_start(subbox, SUBBOX_MARGIN); gtk_widget_set_margin_end(subbox, SUBBOX_MARGIN); |