Files
Upsilon/apps/sequence/graph/vertical_cursor_view.cpp
Émilie Feral 76296e6d36 [apps/sequence/graph] Create a class vertical cursor view
Change-Id: I0fb7c4f5258442956f724fb6819e8179165e836a
2017-03-03 09:38:53 +01:00

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);
}
}