Files
Upsilon/escher/src/toggleable_view.cpp
Hugo Saint-Vignes 2f97dab6d1 [apps/shared] Add toggle buttons in Graph view
Change-Id: I7548d11fb114b2605ce34d3bda0776277b79ff9d
2020-11-04 15:58:25 +01:00

6 lines
130 B
C++

#include <escher/toggleable_view.h>
void ToggleableView::setState(bool state) {
m_state = state;
markRectAsDirty(bounds());
}