CHANGED: #1471 Squashed a bug that prevented many widgets from being serialized right. Therefore preventing correct display when loading the saved XML.

This commit is contained in:
dfighter1985 2012-08-17 05:11:13 +02:00
parent 24cd25d29e
commit 800e03de50

View file

@ -1956,10 +1956,10 @@ namespace NLGUI
// Clear all structures used only for init // Clear all structures used only for init
NLMISC::contReset (_ParentPositionsMap); //NLMISC::contReset (_ParentPositionsMap);
NLMISC::contReset (_ParentSizesMap); //NLMISC::contReset (_ParentSizesMap);
NLMISC::contReset (_ParentSizesMaxMap); //NLMISC::contReset (_ParentSizesMaxMap);
NLMISC::contReset (_LuaClassAssociation); //NLMISC::contReset (_LuaClassAssociation);
return true; return true;
} }
@ -2553,6 +2553,10 @@ namespace NLGUI
CWidgetManager::getInstance()->removeAllMasterGroups(); CWidgetManager::getInstance()->removeAllMasterGroups();
_StyleMap.clear(); _StyleMap.clear();
_CtrlSheetSelection.deleteGroups(); _CtrlSheetSelection.deleteGroups();
NLMISC::contReset (_ParentPositionsMap);
NLMISC::contReset (_ParentSizesMap);
NLMISC::contReset (_ParentSizesMaxMap);
NLMISC::contReset (_LuaClassAssociation);
} }