mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-15 13:31:40 +00:00
Create the log window after the menus. This fixes the font ugliness on windows.
Fix modality for the config dialogs on windows. Fix the compress/decompress dialog wxString issues for MacOSX (hopefully). Fix the DSP-LLE debugger for linux. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6031 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
52d3137598
commit
26aee8ff76
4 changed files with 39 additions and 10 deletions
|
@ -163,11 +163,19 @@ void DSPDebuggerLLE::OnShowPC(wxCommandEvent& event)
|
|||
|
||||
void DSPDebuggerLLE::Refresh()
|
||||
{
|
||||
#ifdef __linux__
|
||||
if (!wxIsMainThread())
|
||||
wxMutexGuiEnter();
|
||||
#endif
|
||||
UpdateSymbolMap();
|
||||
UpdateDisAsmListView();
|
||||
UpdateRegisterFlags();
|
||||
UpdateState();
|
||||
m_mgr.Update();
|
||||
#ifdef __linux__
|
||||
if (!wxIsMainThread())
|
||||
wxMutexGuiLeave();
|
||||
#endif
|
||||
}
|
||||
|
||||
void DSPDebuggerLLE::FocusOnPC()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue