Skip to content

Commit

Permalink
xrGame/ui/UIChangeMap.cpp: return UI elements from CS (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Feb 23, 2024
1 parent f5415af commit 9d88f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrGame/ui/UIChangeMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ void CUIChangeMap::InitChangeMap(CUIXml& xml_doc)
map_pic = UIHelper::CreateStatic(xml_doc, "change_map:map_pic", this);
std::ignore = UIHelper::CreateStatic(xml_doc, "change_map:map_frame", this);
map_version = UIHelper::CreateStatic(xml_doc, "change_map:map_ver_txt", this);
// std::ignore = UIHelper::CreateFrameWindow(xml_doc, "change_map:frame", this);
// std::ignore = UIHelper::CreateFrameWindow(xml_doc, "change_map:list_back", this);
std::ignore = UIHelper::CreateFrameWindow(xml_doc, "change_map:frame", this, false);
std::ignore = UIHelper::CreateFrameWindow(xml_doc, "change_map:list_back", this, false);
lst = UIHelper::CreateListBox(xml_doc, "change_map:list", this);
btn_ok = UIHelper::Create3tButton(xml_doc, "change_map:btn_ok", this);
btn_cancel = UIHelper::Create3tButton(xml_doc, "change_map:btn_cancel", this);
Expand Down

0 comments on commit 9d88f68

Please sign in to comment.