diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-03-02 19:15:38 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-03-02 19:15:38 +0000 |
| commit | 1f7732ba927a31166d834a206bdfc7d20128d483 (patch) | |
| tree | fca0200b95232f0b52990ffd00c8a9e13fbd6e00 /src | |
| parent | Experimental Ponyscape to Inkscape merge (does not compile) (diff) | |
| download | inkscape-1f7732ba927a31166d834a206bdfc7d20128d483.tar.gz inkscape-1f7732ba927a31166d834a206bdfc7d20128d483.zip | |
Attempt at merging certaing features of Ponyscape to trunk (will not link)
(bzr r13090.1.5)
Diffstat (limited to 'src')
| -rw-r--r-- | src/sp-item.cpp | 1 | ||||
| -rw-r--r-- | src/sp-item.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/sp-item.cpp b/src/sp-item.cpp index aec749929..279606481 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -416,6 +416,7 @@ void SPItem::build(SPDocument *document, Inkscape::XML::Node *repr) { object->readAttr( "inkscape:transform-center-y" ); object->readAttr( "inkscape:connector-avoid" ); object->readAttr( "inkscape:connection-points" ); + object->readAttr( "inkscape:highlight-color" ); SPObject::build(document, repr); } diff --git a/src/sp-item.h b/src/sp-item.h index dc0c54a80..0c0edae2a 100644 --- a/src/sp-item.h +++ b/src/sp-item.h @@ -146,6 +146,10 @@ public: void setHidden(bool hidden); /* Objects dialogue */ + bool isSensitive() const { + return sensitive; + }; + bool isHighlightSet() const; guint32 highlight_color() const; |
