mirror of https://github.com/stella-emu/stella.git
removed superfluous '(*)' in UI dialog
updated doc and added examples for other palettes
This commit is contained in:
parent
e5216d4f90
commit
01c859d2a0
Binary file not shown.
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
|
@ -2633,17 +2633,22 @@
|
|||
<br>
|
||||
<table border="5" cellpadding="2" frame="box" rules="none">
|
||||
<tr>
|
||||
<td><img src="graphics/options_misc.png"></td>
|
||||
<td><img src="graphics/options_misc.png"><br><br></td>
|
||||
<td> </td>
|
||||
<td valign="top">
|
||||
<table border="1" cellpadding="4">
|
||||
<tr><th>Item</th><th>Brief description</th><th>For more information,<br>see <a href="#CommandLine">CommandLine</a></th></tr>
|
||||
<tr><td>Interface Palette</td><td>Palette to use for UI elements</td><td>-uipalette</td></tr>
|
||||
<tr><td>Interface Palette</td><td>Palette to use for UI elements (see examples)</td><td>-uipalette</td></tr>
|
||||
<tr><td>List quick delay</td><td>Time to wait between keypresses in list-widgets</td><td>-listdelay</td></tr>
|
||||
<tr><td>Mouse wheel scroll</td><td>Number of lines mouse scroll will move in list-widgets</td><td>-mscroll</td></tr>
|
||||
<tr><td>Mouse wheel scroll</td><td>Number of lines a mouse scroll will move in list-widgets</td><td>-mscroll</td></tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="graphics/options_misc_classic.png"></td>
|
||||
<td> </td>
|
||||
<td><img src="graphics/options_misc_light.png"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<a name="Snapshots"></a>
|
||||
|
|
|
@ -167,7 +167,7 @@ UIDialog::UIDialog(OSystem& osystem, DialogContainer& parent,
|
|||
VarList::push_back(items, "900 ms", "900");
|
||||
VarList::push_back(items, "1 second", "1000");
|
||||
myListDelayPopup = new PopUpWidget(myTab, font, xpos, ypos, pwidth, lineHeight,
|
||||
items, "List quick delay (*) ", lwidth);
|
||||
items, "List quick delay ", lwidth);
|
||||
wid.push_back(myListDelayPopup);
|
||||
ypos += lineHeight + 4;
|
||||
|
||||
|
|
Loading…
Reference in New Issue