tiny position tweaks

svn-id: r11078
This commit is contained in:
Max Horn 2003-11-03 01:04:55 +00:00
parent 83813767ea
commit 4581cdfe6c
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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();