diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2009-03-06 07:33:49 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2009-03-06 07:33:49 +0000 |
| commit | 49158cc86d8103b9b5a9e93ec54462260505f0cb (patch) | |
| tree | 31a2793b2a63528619d9c8af17f7803505822f8b /src/widgets/stroke-style.cpp | |
| parent | generate flash helper path in node tool for all shapes and simple text objects (diff) | |
| download | inkscape-49158cc86d8103b9b5a9e93ec54462260505f0cb.tar.gz inkscape-49158cc86d8103b9b5a9e93ec54462260505f0cb.zip | |
Zero page size, to accommodate stricter GTK+ API. Fixes bug #338196.
(bzr r7429)
Diffstat (limited to 'src/widgets/stroke-style.cpp')
| -rw-r--r-- | src/widgets/stroke-style.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/stroke-style.cpp b/src/widgets/stroke-style.cpp index b1678f266..bd0061796 100644 --- a/src/widgets/stroke-style.cpp +++ b/src/widgets/stroke-style.cpp @@ -1085,7 +1085,7 @@ sp_stroke_style_line_widget_new(void) // with it, the two remaining calls of stroke_average_width, allowing us to get rid of that // function in desktop-style. - a = new Gtk::Adjustment(1.0, 0.0, 1000.0, 0.1, 10.0, 10.0); + a = new Gtk::Adjustment(1.0, 0.0, 1000.0, 0.1, 10.0, 0.0); spw->set_data("width", a); sb = new Gtk::SpinButton(*a, 0.1, 3); tt->set_tip(*sb, _("Stroke width")); @@ -1155,7 +1155,7 @@ sp_stroke_style_line_widget_new(void) hb = spw_hbox(t, 3, 1, i); - a = new Gtk::Adjustment(4.0, 0.0, 100.0, 0.1, 10.0, 10.0); + a = new Gtk::Adjustment(4.0, 0.0, 100.0, 0.1, 10.0, 0.0); spw->set_data("miterlimit", a); sb = new Gtk::SpinButton(*a, 0.1, 2); |
