diff options
author | André Nusser <andre.nusser@googlemail.com> | 2017-05-21 00:03:41 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2017-05-21 00:03:41 +0200 |
commit | e0f20188f86553f1fe109d724f4f472c4e1ccb56 (patch) | |
tree | 77787493c3e2bb848788d49c85dc32ef5cbc2109 /plugin/drumgizmo_plugin.h | |
parent | f9372b88e6bfec45ff1d7582425d5bee585849d5 (diff) |
Fix out of bounds resize of status frame.
Diffstat (limited to 'plugin/drumgizmo_plugin.h')
-rw-r--r-- | plugin/drumgizmo_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/drumgizmo_plugin.h b/plugin/drumgizmo_plugin.h index 36bf016..2a77f07 100644 --- a/plugin/drumgizmo_plugin.h +++ b/plugin/drumgizmo_plugin.h @@ -208,5 +208,5 @@ private: bool inline_image_first_draw{true}; static constexpr std::size_t width{750}; - static constexpr std::size_t height{400}; + static constexpr std::size_t height{385}; }; |