mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
tiny position tweaks
svn-id: r11078
This commit is contained in:
parent
83813767ea
commit
4581cdfe6c
@ -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);
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user