diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-04 13:49:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-04 13:49:45 -0700 |
commit | e007e7005316f7ce5c54dcb84d0ea7cbd30635de (patch) | |
tree | 3ad3a67027d26651980b2a48acaad40cfed4540b /info.c | |
parent | f8de487c2f590d6f4e27f878ac104c229667702c (diff) | |
parent | 6b075e0339f419555f08ece3a6c4a29407ecc32b (diff) | |
download | subsurface-e007e7005316f7ce5c54dcb84d0ea7cbd30635de.tar.gz |
Merge branch 'ui-tweaks' of https://github.com/nathansamson/diveclog
* 'ui-tweaks' of https://github.com/nathansamson/diveclog:
Some UI beauty patches:
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -119,15 +119,15 @@ GtkWidget *dive_info_frame(void) frame = gtk_frame_new("Dive info"); gtk_widget_show(frame); - vbox = gtk_vbox_new(TRUE, 5); + vbox = gtk_vbox_new(TRUE, 6); gtk_container_set_border_width(GTK_CONTAINER(vbox), 3); gtk_container_add(GTK_CONTAINER(frame), vbox); - hbox = gtk_hbox_new(TRUE, 5); + hbox = gtk_hbox_new(TRUE, 6); gtk_container_set_border_width(GTK_CONTAINER(hbox), 3); gtk_container_add(GTK_CONTAINER(vbox), hbox); - hbox2 = gtk_hbox_new(FALSE, 0); + hbox2 = gtk_hbox_new(FALSE, 6); gtk_container_set_border_width(GTK_CONTAINER(hbox2), 3); gtk_container_add(GTK_CONTAINER(vbox), hbox2); @@ -185,9 +185,10 @@ GtkWidget *extended_dive_info_widget(void) { GtkWidget *vbox; - vbox = gtk_vbox_new(FALSE, 5); + vbox = gtk_vbox_new(FALSE, 6); location = text_entry(vbox, "Location"); + gtk_container_set_border_width(GTK_CONTAINER(vbox), 6); notes = text_view(vbox, "Notes", TRUE); /* Add extended info here: name, description, yadda yadda */ |