Commit e57b63325bfce76dd5b4e6b8dc857f0f17e1513c

Authored by Perry Werneck
1 parent 7882d805
Exists in develop

Using 'classical' style only on windows, removing debug message.

Showing 2 changed files with 2 additions and 3 deletions   Show diff stats
configure.ac
... ... @@ -104,7 +104,7 @@ case "$host" in
104 104 LDFLAGS="$LDFLAGS -pthread"
105 105  
106 106 # Windows and unix doesn't use the same defaults.
107   - AC_SUBST(DEFAULT_UI_STYLE,0)
  107 + AC_SUBST(DEFAULT_UI_STYLE,1)
108 108 AC_SUBST(DEFAULT_MENUBAR_VISIBLE,"false")
109 109 ;;
110 110  
... ... @@ -116,7 +116,7 @@ case "$host" in
116 116 LDFLAGS="$LDFLAGS -pthread"
117 117  
118 118 # Windows and unix doesn't use the same defaults.
119   - AC_SUBST(DEFAULT_UI_STYLE,0)
  119 + AC_SUBST(DEFAULT_UI_STYLE,1)
120 120 AC_SUBST(DEFAULT_MENUBAR_VISIBLE,"false")
121 121  
122 122 esac
... ...
src/objects/actions/view.c
... ... @@ -195,7 +195,6 @@ static GSList * append_action(GSList * list, const gchar *prefix, GAction *actio
195 195  
196 196 GdkPixbuf * pixbuf = g_action_get_pixbuf(action, GTK_ICON_SIZE_MENU, GTK_ICON_LOOKUP_GENERIC_FALLBACK);
197 197 if(!pixbuf) {
198   - debug("Action \"%s\": Doesn't have a pixbuf",g_action_get_name(action));
199 198 return list;
200 199 }
201 200  
... ...