diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-19 20:43:15 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-19 14:17:01 -0700 |
commit | 3b615fd98c6ebedbcedb474087f4cb1e59382002 (patch) | |
tree | 5e6acb06369099a402b5d67b949f6b995fbf0574 /src/gui/setup_audio.cpp | |
parent | 73edfce4ce8c12a8ec09a7b5f831698bd64b688b (diff) | |
download | mana-3b615fd98c6ebedbcedb474087f4cb1e59382002.tar.gz mana-3b615fd98c6ebedbcedb474087f4cb1e59382002.tar.bz2 mana-3b615fd98c6ebedbcedb474087f4cb1e59382002.tar.xz mana-3b615fd98c6ebedbcedb474087f4cb1e59382002.zip |
Reverse the order of slider and label again
In order to stay consistent with the video setup page.
Diffstat (limited to 'src/gui/setup_audio.cpp')
-rw-r--r-- | src/gui/setup_audio.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp index 7486e414..7ffff913 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -66,10 +66,10 @@ Setup_Audio::Setup_Audio(): ContainerPlacer place = h.getPlacer(0, 0); place(0, 0, mSoundCheckBox); - place(0, 1, sfxLabel); - place(1, 1, mSfxSlider); - place(0, 2, musicLabel); - place(1, 2, mMusicSlider); + place(0, 1, mSfxSlider); + place(1, 1, sfxLabel); + place(0, 2, mMusicSlider); + place(1, 2, musicLabel); setDimension(gcn::Rectangle(0, 0, 290, 250)); } |