| Summary: | redisplay after exports to graphics | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | claude mercier <claude.mercier> |
| Component: | general | Assignee: | George Staikos <staikos> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | CC: | kst |
| Priority: | VHI | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
claude mercier
2005-11-04 11:29:07 UTC
Wow nice find! SVN commit 477676 by staikos:
update the clip rects after drawing a graphic. Yuck. There's no reason the
graphics export code should kill the cache for the display code and force a
redraw. We need to fix the whole export/print mechanism.
BUG: 115663
M +1 -0 kstviewobject.cpp
--- trunk/extragear/graphics/kst/kst/kstviewobject.cpp #477675:477676
@@ -554,6 +554,7 @@
void KstViewObject::parentRevertedForPrint() {
_geom = _geomOld;
+ _clipMask = QRegion();
for (KstViewObjectList::Iterator i = _children.begin(); i != _children.end(); ++i) {
(*i)->parentRevertedForPrint();
}
|