summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 87fd23b)
raw | patch | inline | side by side (parent: 87fd23b)
author | johanengelen <johanengelen@users.sourceforge.net> | |
Fri, 19 Oct 2007 09:23:27 +0000 (09:23 +0000) | ||
committer | johanengelen <johanengelen@users.sourceforge.net> | |
Fri, 19 Oct 2007 09:23:27 +0000 (09:23 +0000) |
src/ui/widget/registered-widget.cpp | patch | blob | history |
index e87a57bc7ef0a8a71a7823a6e086109e3dba8ae0..55f81cfaffa4af689a09f72301848fd2eaf11b82 100644 (file)
@@ -110,9 +110,6 @@ RegisteredCheckButton::init (const Glib::ustring& label, const Glib::ustring& ti
void
RegisteredCheckButton::setActive (bool b)
{
- if (_wr->isUpdating())
- return;
-
setProgrammatically = true;
_button->set_active (b);
//The slave button is greyed out if the master button is unchecked
void
RegisteredScalarUnit::setValue (double val)
{
- if (_wr->isUpdating())
- return;
-
_widget->setValue (val);
}
void
RegisteredScalar::setValue (double val)
{
- if (_wr->isUpdating())
- return;
-
_widget->setValue (val);
}
@@ -349,9 +340,6 @@ RegisteredColorPicker::init (const Glib::ustring& label, const Glib::ustring& ti
void
RegisteredColorPicker::setRgba32 (guint32 rgba)
{
- if (_wr->isUpdating())
- return;
-
_cp->setRgba32 (rgba);
}
@@ -433,9 +421,6 @@ RegisteredSuffixedInteger::init (const Glib::ustring& label, const Glib::ustring
void
RegisteredSuffixedInteger::setValue (int i)
{
- if (_wr->isUpdating())
- return;
-
setProgrammatically = true;
_adj.set_value (i);
}
@@ -497,9 +482,6 @@ const Glib::ustring& key, Registry& wr, Inkscape::XML::Node* repr_in, SPDocument
void
RegisteredRadioButtonPair::setValue (bool second)
{
- if (_wr->isUpdating())
- return;
-
setProgrammatically = true;
if (second) _rb2->set_active();
else _rb1->set_active();
void
RegisteredPoint::setValue (double xval, double yval)
{
- if (_wr->isUpdating())
- return;
-
_widget->setValue(xval, yval);
}
void
RegisteredRandom::setValue (double val, long startseed)
{
- if (_wr->isUpdating())
- return;
-
_widget->setValue (val);
_widget->setStartSeed(startseed);
}