diff options
author | Max Horn | 2002-10-24 01:36:18 +0000 |
---|---|---|
committer | Max Horn | 2002-10-24 01:36:18 +0000 |
commit | 6e9e20dd700a001356ff14a983bc5868cfd7296c (patch) | |
tree | 6983d1612f8b2c56b985162fe7537bb53fd8c3dc /scumm | |
parent | 367b27b3738e1d64814c7b7281747d856d38e4b8 (diff) | |
download | scummvm-rg350-6e9e20dd700a001356ff14a983bc5868cfd7296c.tar.gz scummvm-rg350-6e9e20dd700a001356ff14a983bc5868cfd7296c.tar.bz2 scummvm-rg350-6e9e20dd700a001356ff14a983bc5868cfd7296c.zip |
reduce volume label size, so that it fits into the dialog
svn-id: r5294
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index a2cc744c65..47d994a84f 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -510,9 +510,9 @@ OptionsDialog::OptionsDialog(NewGui *gui, Scumm *scumm) musicVolumeSlider->setMinValue(0); musicVolumeSlider->setMaxValue(255); sfxVolumeSlider->setMinValue(0); sfxVolumeSlider->setMaxValue(255); - masterVolumeLabel = new StaticTextWidget(this, 200, 10, 60, 16, "Volume1", kTextAlignLeft); - musicVolumeLabel = new StaticTextWidget(this, 200, 26, 60, 16, "Volume2", kTextAlignLeft); - sfxVolumeLabel = new StaticTextWidget(this, 200, 42, 60, 16, "Volume3", kTextAlignLeft); + masterVolumeLabel = new StaticTextWidget(this, 200, 10, 40, 16, "Volume1", kTextAlignLeft); + musicVolumeLabel = new StaticTextWidget(this, 200, 26, 40, 16, "Volume2", kTextAlignLeft); + sfxVolumeLabel = new StaticTextWidget(this, 200, 42, 40, 16, "Volume3", kTextAlignLeft); masterVolumeLabel->setFlags(WIDGET_CLEARBG); musicVolumeLabel->setFlags(WIDGET_CLEARBG); |