diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2016-05-08 07:40:39 +0000 |
|---|---|---|
| committer | jabiertxof <info@marker.es> | 2016-05-08 07:40:39 +0000 |
| commit | d9c43e3d6f19a2f1102743b61d999b477bba4b9a (patch) | |
| tree | e77ac36155e0813318be3b9e7641338d86dac733 /src/widgets/gradient-vector.cpp | |
| parent | Fixing page transforms (diff) | |
| parent | fix-bug-734201. stroke-to-path doesn't scale stroke width used in markers (diff) | |
| download | inkscape-d9c43e3d6f19a2f1102743b61d999b477bba4b9a.tar.gz inkscape-d9c43e3d6f19a2f1102743b61d999b477bba4b9a.zip | |
update to trunk
(bzr r13682.1.40)
Diffstat (limited to 'src/widgets/gradient-vector.cpp')
| -rw-r--r-- | src/widgets/gradient-vector.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/widgets/gradient-vector.cpp b/src/widgets/gradient-vector.cpp index 35c1e4a8d..3aa44c90a 100644 --- a/src/widgets/gradient-vector.cpp +++ b/src/widgets/gradient-vector.cpp @@ -914,7 +914,13 @@ static GtkWidget * sp_gradient_vector_widget_new(SPGradient *gradient, SPStop *s /* Label */ GtkWidget *l = gtk_label_new(C_("Gradient","Offset:")); + +#if GTK_CHECK_VERSION(3,0,0) + gtk_widget_set_halign(l, GTK_ALIGN_END); +#else gtk_misc_set_alignment(GTK_MISC(l), 1.0, 0.5); +#endif + gtk_box_pack_start(GTK_BOX(hb),l, FALSE, FALSE, AUX_BETWEEN_BUTTON_GROUPS); gtk_widget_show(l); |
