projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c7171e
)
Removed gtk_entry_set_inner_border for gtk3 build (#38).
author
Daniel Carl
<danielcarl@gmx.de>
Sun, 30 Jun 2013 17:35:24 +0000
(19:35 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Sun, 30 Jun 2013 17:35:24 +0000
(19:35 +0200)
src/main.c
patch
|
blob
|
history
diff --git
a/src/main.c
b/src/main.c
index
5bd4804
..
3efc6a2
100644
(file)
--- a/
src/main.c
+++ b/
src/main.c
@@
-664,7
+664,9
@@
static void init_core(void)
/* Prepare the inputbox */
gui->inputbox = gtk_entry_new();
+#ifndef HAS_GTK3
gtk_entry_set_inner_border(GTK_ENTRY(gui->inputbox), NULL);
+#endif
g_object_set(gtk_widget_get_settings(gui->inputbox), "gtk-entry-select-on-focus", false, NULL);
#ifdef HAS_GTK3