diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-02-11 10:52:30 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-02-11 10:52:30 +0100 |
commit | 43c2a51331d3e91d86ef50c5262920bdaa260925 (patch) | |
tree | ffc5b03be36537e6f028df935a251493d4557979 /plugingui/image.h | |
parent | 152423c0274887415b50c0d31828036a8fe54708 (diff) |
Show/hide drumkit tab depending on if the current kit has a valid image attached or not.
Diffstat (limited to 'plugingui/image.h')
-rw-r--r-- | plugingui/image.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugingui/image.h b/plugingui/image.h index e70215e..dd7f347 100644 --- a/plugingui/image.h +++ b/plugingui/image.h @@ -51,8 +51,11 @@ public: const Colour& getPixel(size_t x, size_t y) const override; + bool isValid() const; + private: void setError(); + bool valid{false}; void load(const char* data, size_t size); |