summaryrefslogtreecommitdiff
path: root/src/gui/setup_audio.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-19 20:43:15 +0100
committerIra Rice <irarice@gmail.com>2009-01-19 14:17:01 -0700
commit3b615fd98c6ebedbcedb474087f4cb1e59382002 (patch)
tree5e6acb06369099a402b5d67b949f6b995fbf0574 /src/gui/setup_audio.cpp
parent73edfce4ce8c12a8ec09a7b5f831698bd64b688b (diff)
downloadmana-client-3b615fd98c6ebedbcedb474087f4cb1e59382002.tar.gz
mana-client-3b615fd98c6ebedbcedb474087f4cb1e59382002.tar.bz2
mana-client-3b615fd98c6ebedbcedb474087f4cb1e59382002.tar.xz
mana-client-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.cpp8
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));
}