diff options
| author | Glenn Rice <glennricster@gmail.com> | 2011-02-24 05:05:25 +0000 |
|---|---|---|
| committer | Glenn Rice <glennricster@gmail.com> | 2011-02-24 05:05:25 +0000 |
| commit | 2f14598687a1ccf5668e3ff3a9486175011b7cd4 (patch) | |
| tree | f14b51efdd48c61f5918888adb715c63674a6939 /Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp | |
| parent | 1eaad0966cb5e6ee70b146da9f6d5daeeeeab91c (diff) | |
Clean up the debugger gui a bit. In general do not call SetSizeHints on a window unless it is a top level window. It isn't supposed to do anything for non top level windows, but it causes glitches on linux. Removing these calls does not affect the end result on windows.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7233 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp index 2e65cbc06a..ca8f5f7598 100644 --- a/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Src/Debugger/CodeWindow.cpp @@ -411,9 +411,7 @@ void CCodeWindow::CreateGUIControls(const SCoreStartupParameter& _LocalCoreStart SetSizer(sizerBig); - sizerLeft->SetSizeHints(this); sizerLeft->Fit(this); - sizerBig->SetSizeHints(this); sizerBig->Fit(this); sync_event.Init(); |
