Merge pull request #537 from Armada651/master

RenderFrame: Set the background to black.
This commit is contained in:
Lioncash 2014-06-28 12:02:27 -04:00
commit e0bedc3ed6
1 changed files with 1 additions and 0 deletions

View File

@ -964,6 +964,7 @@ void CFrame::StartGame(const std::string& filename)
else
m_RenderFrame->SetWindowStyle(m_RenderFrame->GetWindowStyle() & ~wxSTAY_ON_TOP);
m_RenderFrame->SetBackgroundColour(*wxBLACK);
m_RenderFrame->SetClientSize(size.GetWidth(), size.GetHeight());
m_RenderFrame->Bind(wxEVT_CLOSE_WINDOW, &CFrame::OnRenderParentClose, this);
m_RenderFrame->Bind(wxEVT_ACTIVATE, &CFrame::OnActive, this);