Skip to content

Commit a78e8ed

Browse files
committed
Fix missing background in messages history window in CS (#382)
1 parent aed2394 commit a78e8ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrGame/ui/UILogsWnd.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ bool CUILogsWnd::Init()
105105
CUIXmlInit::InitWindow(m_uiXml, "main_wnd", 0, this);
106106

107107
m_background = UIHelper::CreateFrameWindow(m_uiXml, "background", this, false);
108-
if (m_background)
108+
if (!m_background)
109109
m_background2 = UIHelper::CreateFrameLine(m_uiXml, "background", this, false);
110110
m_center_background = UIHelper::CreateFrameWindow(m_uiXml, "center_background", this, false);
111111

0 commit comments

Comments
 (0)