I'm trying to display some information when the player hovers a Combobox. This is how I'm subscribing to the event :
Code: Select all
lShieldLayer->subscribeEvent(CEGUI::Combobox::EventMouseMove, CEGUI::Event::Subscriber(&GUITemplateEdit::ShieldCombobox_OnMouseMove, this));
I never get any event when I move the mouse over the combobox. I'm also subscribing for EventMouseMove on the DropList and this one works fine. It seems to me like the combobox does not fire the mouse move events for some reason. Is there a problem in my configuration or is this a bug?
Thanks!