summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-01-29 11:07:48 +0000
committerjabiertxof <info@marker.es>2016-01-29 11:07:48 +0000
commit8d4150d5bdeace7250e9c41a6bc8a944c5df1726 (patch)
treeedc39a5b8b03f9abddaeb3a25ef0c97dca3065f7 /src
parentAdd an advert to fillet chamfer users that the coming version in 'pointwise' ... (diff)
downloadinkscape-8d4150d5bdeace7250e9c41a6bc8a944c5df1726.tar.gz
inkscape-8d4150d5bdeace7250e9c41a6bc8a944c5df1726.zip
Fixed a bug related to windows position on dynamic toolbat commit
(bzr r14624)
Diffstat (limited to 'src')
-rw-r--r--src/widgets/toolbox.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 8367104d4..edee612e5 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -1467,8 +1467,11 @@ void setup_aux_toolbox(GtkWidget *toolbox, SPDesktop *desktop)
gtk_table_attach( GTK_TABLE(holder), swatch_, 1, 2, 0, 1, (GtkAttachOptions)(GTK_SHRINK | GTK_FILL), (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), AUX_BETWEEN_BUTTON_GROUPS, AUX_SPACING );
#endif
}
-
- gtk_widget_show_now( holder );
+ if(i==0){
+ gtk_widget_show_all( holder );
+ } else {
+ gtk_widget_show_now( holder );
+ }
sp_set_font_size_smaller( holder );
gtk_size_group_add_widget( grouper, holder );