[apps/shared/round_cursor_view] Comment about markRectAsDirty

This commit is contained in:
Ruben Dashyan
2020-03-10 10:43:51 +01:00
committed by LeaNumworks
parent 037fa088e9
commit 1ca902c129

View File

@@ -50,6 +50,10 @@ void RoundCursorView::setCursorFrame(KDRect f, bool force) {
}
void RoundCursorView::markRectAsDirty(KDRect rect) {
/* The CursorView class inherits from TransparentView, so does
* RoundCursorView. The method markRectAsDirty is thus overriden to avoid
* marking as dirty the background of the RoundCursorView in its superview.
*/
View::markRectAsDirty(rect);
}