[Kst] [Bug 118148] View Object Printing Bugs
Andrew Walker
arwalker at sumusltd.com
Sun Dec 18 02:03:59 CET 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=118148
------- Additional Comments From arwalker sumusltd com 2005-12-18 02:03 -------
SVN commit 489316 by arwalker:
CCBUG:118148 no longer display borders for transparent label - this is consistent with legend behaviour
M +5 -1 kstviewlabel.cpp
--- trunk/extragear/graphics/kst/kst/kstviewlabel.cpp #489315:489316
@ -367,7 +367,11 @
}
}
p.restore();
- KstBorderedViewObject::paint(p, bounds);
+ if (_transparent) {
+ KstViewObject::paint(p, bounds);
+ } else {
+ KstBorderedViewObject::paint(p, bounds);
+ }
}
More information about the Kst
mailing list