mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
GUI: Added file monitor log
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4185 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -437,10 +437,14 @@ void CLogWindow::OnLogTimer(wxTimerEvent& WXUNUSED(event))
|
||||
if (!m_LogAccess) return;
|
||||
|
||||
//m_Log->Freeze();
|
||||
int MsgSz = msgQueue.size();
|
||||
UpdateLog();
|
||||
// Better auto scroll
|
||||
m_Log->ScrollLines(1);
|
||||
m_Log->ShowPosition( m_Log->GetLastPosition() );
|
||||
if (MsgSz > 0)
|
||||
{
|
||||
m_Log->ScrollLines(1);
|
||||
m_Log->ShowPosition( m_Log->GetLastPosition() );
|
||||
}
|
||||
//m_Log->Thaw();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user