diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-04-09 20:43:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 20:43:39 +0200 |
| commit | 17a37acaa81278cc8c782d84d994d4ca938ef006 (patch) | |
| tree | 3c15890315a420417cd96b82103da80c84ed562d /src/displayapp/screens/InfiniPaint.h | |
| parent | 04fc33e2d479161ec261f932b908dffbd73e227f (diff) | |
| parent | 3685095da0d01f137692f80df2c267a8b90da715 (diff) | |
Merge pull request #258 from joaquimorg/BigRewrite
New settings menu and more...
Diffstat (limited to 'src/displayapp/screens/InfiniPaint.h')
| -rw-r--r-- | src/displayapp/screens/InfiniPaint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/displayapp/screens/InfiniPaint.h b/src/displayapp/screens/InfiniPaint.h index 9a7ac076..da9c39ba 100644 --- a/src/displayapp/screens/InfiniPaint.h +++ b/src/displayapp/screens/InfiniPaint.h @@ -19,8 +19,6 @@ namespace Pinetime { bool Refresh() override; - bool OnButtonPushed() override; - bool OnTouchEvent(TouchEvents event) override; bool OnTouchEvent(uint16_t x, uint16_t y) override; @@ -31,7 +29,9 @@ namespace Pinetime { static constexpr uint16_t height = 10; static constexpr uint16_t bufferSize = width * height; lv_color_t b[bufferSize]; - bool running = true; + lv_color_t selectColor = LV_COLOR_WHITE; + uint8_t color = 2; + }; } } |
