aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-11-03 01:04:55 +0000
committerMax Horn2003-11-03 01:04:55 +0000
commit4581cdfe6cc32f302006d66a69824912cdca59ea (patch)
treeb457bca5de3681bfe626e52b40ce2b014090190a
parent83813767ea1904caac68eed29b143fbf3c6fc747 (diff)
downloadscummvm-rg350-4581cdfe6cc32f302006d66a69824912cdca59ea.tar.gz
scummvm-rg350-4581cdfe6cc32f302006d66a69824912cdca59ea.tar.bz2
scummvm-rg350-4581cdfe6cc32f302006d66a69824912cdca59ea.zip
tiny position tweaks
svn-id: r11078
-rw-r--r--gui/PopUpWidget.cpp2
-rw-r--r--gui/options.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/gui/PopUpWidget.cpp b/gui/PopUpWidget.cpp
index d289fe0f34..ca87c8d9df 100644
--- a/gui/PopUpWidget.cpp
+++ b/gui/PopUpWidget.cpp
@@ -317,7 +317,7 @@ void PopUpWidget::drawWidget(bool hilite) {
// Draw the label, if any
if (_labelWidth > 0)
- gui->drawString(_label, _x, _y + 2, _labelWidth, isEnabled() ? gui->_textcolor : gui->_color, kTextAlignRight);
+ gui->drawString(_label, _x, _y + 3, _labelWidth, isEnabled() ? gui->_textcolor : gui->_color, kTextAlignRight);
// Draw a thin frame around us.
gui->hLine(x, _y, x + w - 1, gui->_color);
diff --git a/gui/options.cpp b/gui/options.cpp
index 9fa82af91b..27b8c9b44c 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -79,7 +79,7 @@ GlobalOptionsDialog::GlobalOptionsDialog(GameDetector &detector)
// TODO - add an API to query the list of available GFX modes, and to get/set the mode
//new StaticTextWidget(tab, 5, vBorder+2, 100, kLineHeight, "Graphics mode: ", kTextAlignRight);
PopUpWidget *gfxPopUp;
- gfxPopUp = new PopUpWidget(tab, 6, vBorder, 280, kLineHeight, "Graphics mode: ", 100);
+ gfxPopUp = new PopUpWidget(tab, 5, vBorder, 280, kLineHeight, "Graphics mode: ", 100);
gfxPopUp->appendEntry("<default>");
gfxPopUp->appendEntry("");
gfxPopUp->appendEntry("Normal (no scaling)");
@@ -107,7 +107,7 @@ GlobalOptionsDialog::GlobalOptionsDialog(GameDetector &detector)
// The MIDI mode popup & a label
//new StaticTextWidget(tab, 5, vBorder+2, 100, kLineHeight, "Music driver: ", kTextAlignRight);
- _midiPopUp = new PopUpWidget(tab, 6, vBorder, 280, kLineHeight, "Music driver: ", 100);
+ _midiPopUp = new PopUpWidget(tab, 5, vBorder, 280, kLineHeight, "Music driver: ", 100);
// Populate it
const MidiDriverDescription *md = getAvailableMidiDrivers();