diff options
author | rubenwardy <rw@rubenwardy.com> | 2019-12-06 23:00:54 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2019-12-06 23:00:54 +0000 |
commit | 51f230895c2b6d99a6fddc1c235140fcf9938742 (patch) | |
tree | 5712ba891b024f3c1223bc47c9b6796471085fb0 | |
parent | 4f45bfd08b013c00600a85abde0d0b19884ec430 (diff) | |
download | minetest-51f230895c2b6d99a6fddc1c235140fcf9938742.tar.gz minetest-51f230895c2b6d99a6fddc1c235140fcf9938742.tar.bz2 minetest-51f230895c2b6d99a6fddc1c235140fcf9938742.zip |
Fix failing build due to code style error
-rw-r--r-- | src/gui/guiScrollBar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/guiScrollBar.h b/src/gui/guiScrollBar.h index cb8f3cb01..29493bb99 100644 --- a/src/gui/guiScrollBar.h +++ b/src/gui/guiScrollBar.h @@ -23,7 +23,8 @@ public: GUIScrollBar(IGUIEnvironment *environment, IGUIElement *parent, s32 id, core::rect<s32> rectangle, bool horizontal, bool auto_scale); - enum ArrowVisibility { + enum ArrowVisibility + { HIDE, SHOW, DEFAULT |