1
0
forked from 0ad/0ad

Uncommented list, does anyone know why that has been done anyway? I can't even remember if I've done that or not. Also removed the annoying "Left click has been blocked" error in the log.

This was SVN commit r2498.
This commit is contained in:
Gee 2005-07-20 05:27:32 +00:00
parent f715e6c226
commit c3cf031a52

View File

@ -153,8 +153,6 @@ int CGUI::HandleEvent(const SDL_Event* ev)
pNearest->ScriptEvent("mouseleftpress");
// Block event, so things on the map (behind the GUI) won't be pressed
LOG(ERROR, LOG_CATEGORY, "Left click blocked");
ret = EV_HANDLED;
}
else if (m_FocusedObject)
@ -337,7 +335,14 @@ void CGUI::Initialize()
AddObjectType("progressbar", &CProgressBar::ConstructObject);
AddObjectType("minimap", &CMiniMap::ConstructObject);
AddObjectType("input", &CInput::ConstructObject);
// AddObjectType("list", &CList::ConstructObject);
// The following line was commented out, I don't know if that's me or not, or
// for what reason, but I'm gonna uncomment, if anything breaks, just let me
// know, or if it wasn't I that commented it out, do let me know why.
// -- Gee 20-07-2005
AddObjectType("list", &CList::ConstructObject);
//
AddObjectType("dropdown", &CDropDown::ConstructObject);
}