mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
Fixed a scrollbar issue.
This commit is contained in:
parent
b6ac09aa1a
commit
49295f8eff
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
}
|
Loading…
Add table
Reference in a new issue