Files
Upsilon/apps/graph/graph/cursor_view.cpp
Romain Goyet 8e4b1666bb Kandinsky: KDFillRect takes a pattern, always
Change-Id: I32113345d742f21c0e238c1707bcee0116694d6f
2016-07-05 13:32:47 +02:00

7 lines
148 B
C++

#include "cursor_view.h"
void CursorView::drawRect(KDRect rect) const {
KDColor cursorColor = KDColorRed;
KDFillRect(rect, &cursorColor, 1);
}