summaryrefslogtreecommitdiffstats
path: root/src/dialogs/guidelinedialog.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2008-02-17 03:58:32 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2008-02-17 03:58:32 +0000
commit0ab8e72c19680a48f562ce1a65f13b558d45add6 (patch)
tree3b03054d6de9a50da42f3f3d059894998ae32d52 /src/dialogs/guidelinedialog.cpp
parentfix sticking in rotation mode after click (correct fix this time, sorry) (diff)
downloadinkscape-0ab8e72c19680a48f562ce1a65f13b558d45add6.tar.gz
inkscape-0ab8e72c19680a48f562ce1a65f13b558d45add6.zip
(almost) remove artificial limits in spinbuttons
(bzr r4749)
Diffstat (limited to 'src/dialogs/guidelinedialog.cpp')
-rw-r--r--src/dialogs/guidelinedialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dialogs/guidelinedialog.cpp b/src/dialogs/guidelinedialog.cpp
index 46f9a48c0..1dc23cb2b 100644
--- a/src/dialogs/guidelinedialog.cpp
+++ b/src/dialogs/guidelinedialog.cpp
@@ -46,9 +46,9 @@ GuidelinePropertiesDialog::GuidelinePropertiesDialog(SPGuide *guide, SPDesktop *
_label_Y(_("Y:")),
_label_degrees(_("Angle (degrees):")),
_relative_toggle(_("Rela_tive change"), _("Move and/or rotate the guide relative to current settings")),
- _adjustment_x(0.0, -SP_DESKTOP_SCROLL_LIMIT, SP_DESKTOP_SCROLL_LIMIT, 1.0, 10.0, 10.0),
- _adjustment_y(0.0, -SP_DESKTOP_SCROLL_LIMIT, SP_DESKTOP_SCROLL_LIMIT, 1.0, 10.0, 10.0),
- _adj_angle(0.0, -SP_DESKTOP_SCROLL_LIMIT, SP_DESKTOP_SCROLL_LIMIT, 1.0, 10.0, 10.0),
+ _adjustment_x(0.0, -1e6, 1e6, 1.0, 10.0, 10.0),
+ _adjustment_y(0.0, -1e6, 1e6, 1.0, 10.0, 10.0),
+ _adj_angle(0.0, -360, 360, 1.0, 10.0, 10.0),
_unit_selector(NULL), _mode(true), _oldpos(0.,0.), _oldangle(0.0)
{
}