mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
11 lines
233 B
C++
11 lines
233 B
C++
#include "vertical_cursor_view.h"
|
|
|
|
namespace Sequence {
|
|
|
|
void VerticalCursorView::drawRect(KDContext * ctx, KDRect rect) const {
|
|
KDCoordinate height = bounds().height();
|
|
ctx->fillRect(KDRect(0, 0, 1, height), KDColorBlack);
|
|
}
|
|
|
|
}
|