[escher/transparent_view] Remove redundancy

This commit is contained in:
Ruben Dashyan
2020-03-04 14:50:57 +01:00
committed by LeaNumworks
parent 8337e36f46
commit d64e58b9dc

View File

@@ -2,7 +2,7 @@
void TransparentView::markRectAsDirty(KDRect rect) {
if (m_superview) {
m_superview->markRectAsDirty(KDRect(rect.translatedBy(m_frame.origin())));
m_superview->markRectAsDirty(rect.translatedBy(m_frame.origin()));
}
View::markRectAsDirty(rect);
}