diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2009-02-04 17:33:59 +0000 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2009-02-04 17:33:59 +0000 |
| commit | 7b7cfa940ebbe5905e88c223503daa2edfaaa2ce (patch) | |
| tree | 0c2209c3e1401e87e4817b965bf3e95526ed60c7 /Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp | |
| parent | ad88b27c7625b1577dd0c5cc656f3cbb73e6aac9 (diff) | |
remove stuff from ogl debugger that did nothing. (copied from dsp hle a while ago)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2111 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp index 1c25f32690..dc9fb74eac 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp @@ -294,11 +294,11 @@ void ConfigDialog::CreateGUIControls() sbRendering->Add(sRenderBoxRow1); sAdvanced->Add(sbRendering, 0, wxEXPAND|wxALL, 5); - sUtilities = new wxGridBagSizer(0, 0); - sUtilities->Add(m_DumpTextures, wxGBPosition(0, 0), wxGBSpan(1, 1), wxALIGN_CENTER_VERTICAL|wxALL, 5); - sUtilities->Add(m_TexturePath, wxGBPosition(0, 1), wxGBSpan(1, 1), wxALL, 5); - sbUtilities->Add(sUtilities); - sAdvanced->Add(sbUtilities, 0, wxEXPAND|wxALL, 5); + sUtilities = new wxBoxSizer(wxHORIZONTAL); + sUtilities->Add(m_DumpTextures, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); + sUtilities->Add(m_TexturePath, 1, wxALL|wxEXPAND, 5); + sbUtilities->Add(sUtilities, 1, wxEXPAND); + sAdvanced->Add(sbUtilities, 1, wxEXPAND|wxALL, 5); sHacks = new wxGridBagSizer(0, 0); sHacks->Add(m_ProjectionHax1, wxGBPosition(0, 0), wxGBSpan(1, 1), wxALL, 5); |
