Skip to content

Commit

Permalink
Fix missing background in messages history window in CS (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Feb 20, 2024
1 parent aed2394 commit a78e8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrGame/ui/UILogsWnd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ bool CUILogsWnd::Init()
CUIXmlInit::InitWindow(m_uiXml, "main_wnd", 0, this);

m_background = UIHelper::CreateFrameWindow(m_uiXml, "background", this, false);
if (m_background)
if (!m_background)
m_background2 = UIHelper::CreateFrameLine(m_uiXml, "background", this, false);
m_center_background = UIHelper::CreateFrameWindow(m_uiXml, "center_background", this, false);

Expand Down

0 comments on commit a78e8ed

Please sign in to comment.