diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2009-02-14 07:16:55 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2009-02-14 07:16:55 +0000 |
| commit | 8b38e94f3659aecc379d0d18c1a74604187962c4 (patch) | |
| tree | c8b899aabcbf1871c394c73b14951c5513a1a480 /src/widgets/toolbox.cpp | |
| parent | Rename fill-* to paint-* where it made sense, rename text-direction-* to (diff) | |
| download | inkscape-8b38e94f3659aecc379d0d18c1a74604187962c4.tar.gz inkscape-8b38e94f3659aecc379d0d18c1a74604187962c4.zip | |
Zero page size for GTK spinbutton change
(bzr r7295)
Diffstat (limited to 'src/widgets/toolbox.cpp')
| -rw-r--r-- | src/widgets/toolbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index a2be7e238..f7e1e9bc6 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -939,7 +939,7 @@ static EgeAdjustmentAction * create_adjustment_action( gchar const *name, { Inkscape::Preferences *prefs = Inkscape::Preferences::get(); GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( prefs->getDouble(path, def) * factor, - lower, upper, step, page, page ) ); + lower, upper, step, page, 0 ) ); if (us) { sp_unit_selector_add_adjustment( SP_UNIT_SELECTOR(us), adj ); } |
