aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-11-10 11:56:10 +0000
committerTorbjörn Andersson2005-11-10 11:56:10 +0000
commit87a868eda55db4af1181d3286e06aa084b6cdb24 (patch)
treeb953ddada3ec249aa1c4d94a3b27df16ef7634bf /gui
parentedc8e871744bb3b9fc1de11fa8814fe501b0dc73 (diff)
downloadscummvm-rg350-87a868eda55db4af1181d3286e06aa084b6cdb24.tar.gz
scummvm-rg350-87a868eda55db4af1181d3286e06aa084b6cdb24.tar.bz2
scummvm-rg350-87a868eda55db4af1181d3286e06aa084b6cdb24.zip
Removed unnecessary space from the SoundFont button's text, to keep it from
being truncated in the small version of the GUI. svn-id: r19546
Diffstat (limited to 'gui')
-rw-r--r--gui/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index b47b60bbd5..e58e6b71f5 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -411,7 +411,7 @@ int OptionsDialog::addMIDIControls(GuiObject *boss, int yoffset, WidgetSize ws)
}
// SoundFont
- _soundFontButton = addButton(boss, x, yoffset, "SoundFont: ", kChooseSoundFontCmd, 0, ws);
+ _soundFontButton = addButton(boss, x, yoffset, "SoundFont:", kChooseSoundFontCmd, 0, ws);
_soundFont = new StaticTextWidget(boss, x + buttonWidth + 20, yoffset + 3, _w - (x + buttonWidth + 20) - 10, kLineHeight, "None", kTextAlignLeft, ws);
yoffset += buttonHeight + 2 * spacing;