diff options
| author | bulia byak <buliabyak@gmail.com> | 2006-10-25 05:35:59 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2006-10-25 05:35:59 +0000 |
| commit | a59a2ca83d340cee98fd272f7d7c9d77fcd910f6 (patch) | |
| tree | 21e63f24a2a66333bf00bd229c3f90f919e4ff41 /src/desktop.cpp | |
| parent | switch pref/repr utility methods to using long long ints; with (diff) | |
| download | inkscape-a59a2ca83d340cee98fd272f7d7c9d77fcd910f6.tar.gz inkscape-a59a2ca83d340cee98fd272f7d7c9d77fcd910f6.zip | |
implement rendering of clips/masks in outline mode; make all outline colors stored in the prefs
(bzr r1861)
Diffstat (limited to 'src/desktop.cpp')
| -rw-r--r-- | src/desktop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/desktop.cpp b/src/desktop.cpp index d7a081faf..c0548a8d2 100644 --- a/src/desktop.cpp +++ b/src/desktop.cpp @@ -1344,9 +1344,9 @@ _namedview_modified (SPObject *obj, guint flags, SPDesktop *desktop) SP_RGBA32_G_U(nv->pagecolor) + SP_RGBA32_B_U(nv->pagecolor)) >= 384) { // the background color is light or transparent, use black outline - SP_CANVAS_ARENA (desktop->drawing)->arena->outlinecolor = 0xff; + SP_CANVAS_ARENA (desktop->drawing)->arena->outlinecolor = prefs_get_int_attribute("options.wireframecolors", "onlight", 0xff); } else { // use white outline - SP_CANVAS_ARENA (desktop->drawing)->arena->outlinecolor = 0xffffffff; + SP_CANVAS_ARENA (desktop->drawing)->arena->outlinecolor = prefs_get_int_attribute("options.wireframecolors", "ondark", 0xffffffff); } } } |
