diff options
Diffstat (limited to 'source/Irrlicht/CGUIListBox.h')
-rw-r--r-- | source/Irrlicht/CGUIListBox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Irrlicht/CGUIListBox.h b/source/Irrlicht/CGUIListBox.h index a3e7255..37fffa8 100644 --- a/source/Irrlicht/CGUIListBox.h +++ b/source/Irrlicht/CGUIListBox.h @@ -154,6 +154,7 @@ namespace gui core::array< ListItem > Items;
s32 Selected;
+ s32 HoverSelected; // When >= 0 we're in the middle of changing selection while mouse is pressed. We need to know so selected again isn't called too often.
s32 ItemHeight;
s32 ItemHeightOverride;
s32 TotalItemHeight;
@@ -161,7 +162,7 @@ namespace gui gui::IGUIFont* Font;
gui::IGUISpriteBank* IconBank;
gui::IGUIScrollBar* ScrollBar;
- u32 selectTime;
+ u32 SelectTime;
u32 LastKeyTime;
core::stringw KeyBuffer;
bool Selecting;
|