mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
9 lines
228 B
C++
9 lines
228 B
C++
#include <escher/transparent_view.h>
|
|
|
|
void TransparentView::markRectAsDirty(KDRect rect) {
|
|
if (m_superview) {
|
|
m_superview->markRectAsDirty(KDRect(rect.translatedBy(m_frame.origin())));
|
|
}
|
|
View::markRectAsDirty(rect);
|
|
}
|