summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-05 22:52:55 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-05 22:53:40 +0200
commit4a41e7d16a6bbe0f8872030a71bc81be5dab3e54 (patch)
treed8081925d83b343fdb2b3a946cb4055d2fcacc6e /src/gui/setup_video.cpp
parent20d512dba013f95323ff5bcab1f54554ef5efcd2 (diff)
downloadmana-client-4a41e7d16a6bbe0f8872030a71bc81be5dab3e54.tar.gz
mana-client-4a41e7d16a6bbe0f8872030a71bc81be5dab3e54.tar.bz2
mana-client-4a41e7d16a6bbe0f8872030a71bc81be5dab3e54.tar.xz
mana-client-4a41e7d16a6bbe0f8872030a71bc81be5dab3e54.zip
Tweaked the available font sizes
The "Very Large" option didn't make that much sense, and some people may still prefer a smaller font.
Diffstat (limited to 'src/gui/setup_video.cpp')
-rw-r--r--src/gui/setup_video.cpp25
1 files changed, 14 insertions, 11 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index 17681cfc..8aa5c9fd 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -109,10 +109,10 @@ ModeListModel::ModeListModel()
const char *SIZE_NAME[4] =
{
+ N_("Tiny"),
N_("Small"),
N_("Medium"),
N_("Large"),
- N_("Very Large")
};
class FontSizeChoiceListModel : public gcn::ListModel
@@ -150,14 +150,17 @@ Setup_Video::Setup_Video():
mModeList(new ListBox(mModeListModel)),
mFsCheckBox(new CheckBox(_("Full screen"), mFullScreenEnabled)),
mOpenGLCheckBox(new CheckBox(_("OpenGL"), mOpenGLEnabled)),
- mCustomCursorCheckBox(new CheckBox(_("Custom cursor"), mCustomCursorEnabled)),
- mVisibleNamesCheckBox(new CheckBox(_("Visible names"), mVisibleNamesEnabled)),
- mParticleEffectsCheckBox(new CheckBox(_("Particle effects"), mParticleEffectsEnabled)),
+ mCustomCursorCheckBox(new CheckBox(_("Custom cursor"),
+ mCustomCursorEnabled)),
+ mVisibleNamesCheckBox(new CheckBox(_("Visible names"),
+ mVisibleNamesEnabled)),
+ mParticleEffectsCheckBox(new CheckBox(_("Particle effects"),
+ mParticleEffectsEnabled)),
mNameCheckBox(new CheckBox(_("Show name"), mNameEnabled)),
mPickupNotifyLabel(new Label(_("Show pickup notification"))),
mPickupChatCheckBox(new CheckBox(_("in chat"), mPickupChatEnabled)),
mPickupParticleCheckBox(new CheckBox(_("as particle"),
- mPickupParticleEnabled)),
+ mPickupParticleEnabled)),
mSpeechSlider(new Slider(0, 3)),
mSpeechLabel(new Label("")),
mAlphaSlider(new Slider(0.2, 1.0)),
@@ -307,20 +310,20 @@ Setup_Video::Setup_Video():
int fontSizeSelected;
switch (mFontSize)
{
- case 11:
+ case 10:
fontSizeSelected = 0;
break;
- case 12:
+ case 11:
fontSizeSelected = 1;
break;
- case 13:
+ case 12:
fontSizeSelected = 2;
break;
- case 14:
+ case 13:
fontSizeSelected = 3;
break;
default:
- fontSizeSelected = 0;
+ fontSizeSelected = 1;
break;
}
@@ -435,7 +438,7 @@ void Setup_Video::apply()
// FPS change
config.setValue("fpslimit", mFps);
- config.setValue("fontSize", mFontSizeDropDown->getSelected() + 11);
+ config.setValue("fontSize", mFontSizeDropDown->getSelected() + 10);
// We sync old and new values at apply time
mFullScreenEnabled = config.getValue("screen", false);