diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-19 20:43:15 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-01-19 20:43:15 +0100 |
commit | a76f3e84eb1ea18e0747cc10f0cfb9c4254daff0 (patch) | |
tree | 61811279098ad174045d2f350ee90b081391f326 /src | |
parent | 5660378cc830dd48b32cd16b69039d5d76b7efdb (diff) | |
download | mana-client-a76f3e84eb1ea18e0747cc10f0cfb9c4254daff0.tar.gz mana-client-a76f3e84eb1ea18e0747cc10f0cfb9c4254daff0.tar.bz2 mana-client-a76f3e84eb1ea18e0747cc10f0cfb9c4254daff0.tar.xz mana-client-a76f3e84eb1ea18e0747cc10f0cfb9c4254daff0.zip |
Reverse the order of slider and label again
In order to stay consistent with the video setup page.
Diffstat (limited to 'src')
-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 838a1875..81c2f1af 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -67,10 +67,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, 250, 200)); } |