diff options
| author | Andrius Ramanauskas <knutux@gmail.com> | 2006-04-27 08:00:49 +0000 |
|---|---|---|
| committer | knutux <knutux@users.sourceforge.net> | 2006-04-27 08:00:49 +0000 |
| commit | 9782a003fc66ec0e1e60b8c7280f0872c5482fc6 (patch) | |
| tree | 55a2c7d9fc109661239a7d054856370c2bb27637 /src/sp-item.cpp | |
| parent | Placemark for gradient export (diff) | |
| download | inkscape-9782a003fc66ec0e1e60b8c7280f0872c5482fc6.tar.gz inkscape-9782a003fc66ec0e1e60b8c7280f0872c5482fc6.zip | |
fixing conditional attribute evaluation on load (if conditional attributes were used not in the item under <switch>, on load it was always rendered)
(bzr r596)
Diffstat (limited to 'src/sp-item.cpp')
| -rw-r--r-- | src/sp-item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-item.cpp b/src/sp-item.cpp index c2e3bb1bf..3d71443d6 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -142,7 +142,7 @@ void SPItem::init() { this->transform_center_y = 0; this->_is_evaluated = true; - this->_evaluated_status = StatusCalculated; + this->_evaluated_status = StatusUnknown; this->transform = NR::identity(); |
