projects
/
emu8051.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be12d59
)
Increase spacing between buttons
author
Hugo Villeneuve
<hugo@hugovil.com>
Tue, 1 Oct 2013 00:54:21 +0000
(20:54 -0400)
committer
Hugo Villeneuve
<hugo@hugovil.com>
Tue, 1 Oct 2013 01:19:45 +0000
(21:19 -0400)
src/emugtk.c
patch
|
blob
|
history
diff --git
a/src/emugtk.c
b/src/emugtk.c
index
bf22a9e
..
7749763
100644
(file)
--- a/
src/emugtk.c
+++ b/
src/emugtk.c
@@
-44,6
+44,8
@@
#include "pgmwin.h"
#include "memwin.h"
+#define BUTTONS_BORDER 2
+
static int running;
static int running_function_tag;
static GtkWidget *mainwin;
@@
-116,7
+118,7
@@
button_add_pix(GtkWidget *box, char **xpm)
gdk_pixbuf_new_from_xpm_data((const char **) xpm));
gtk_container_add(GTK_CONTAINER(button), icon);
- gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE,
0
);
+ gtk_box_pack_start(GTK_BOX(box), button, FALSE, FALSE,
BUTTONS_BORDER
);
return button;
}