Fixed a scrollbar issue.

This commit is contained in:
Oil 2014-06-05 19:21:06 +04:00
parent b6ac09aa1a
commit 49295f8eff
1 changed files with 3 additions and 1 deletions

View File

@ -328,6 +328,8 @@ void LogFrame::Settings(wxCommandEvent& WXUNUSED(event))
void LogFrame::UpdateListSize(wxSizeEvent& event)
{
m_log.SetSize(this->GetSize());
int width, height;
this->DoGetSize(&width, &height);
m_log.SetSize(wxSize(width-15, height-55));
event.Skip();
}