From: buliabyak Date: Sun, 17 Feb 2008 03:58:32 +0000 (+0000) Subject: (almost) remove artificial limits in spinbuttons X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6288d12acfdffe87e92592d9285b4733e0e8d55a;p=inkscape.git (almost) remove artificial limits in spinbuttons --- 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) { }