mirror of https://github.com/stella-emu/stella.git
fixed doc
This commit is contained in:
parent
8a2cace6c8
commit
1282c1411d
Binary file not shown.
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 44 KiB |
Binary file not shown.
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 36 KiB |
Binary file not shown.
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 74 KiB |
|
@ -3695,6 +3695,9 @@
|
||||||
<li>
|
<li>
|
||||||
The 'Show all files' checkbox allows displaying files which do not
|
The 'Show all files' checkbox allows displaying files which do not
|
||||||
have a valid ROM extension.
|
have a valid ROM extension.
|
||||||
|
</li><li>
|
||||||
|
If 'Incl. subdirectories' is checked, Stella will list matching files
|
||||||
|
from all subdirectories too.
|
||||||
</li><li>
|
</li><li>
|
||||||
The 'Filter' text box can be used to narrow down the results in the
|
The 'Filter' text box can be used to narrow down the results in the
|
||||||
ROM listing. When this box is empty, all files are shown. Typing
|
ROM listing. When this box is empty, all files are shown. Typing
|
||||||
|
@ -3706,9 +3709,6 @@
|
||||||
about capital or lower-case letters. You also can use '*' and '?' as
|
about capital or lower-case letters. You also can use '*' and '?' as
|
||||||
wildcards. E.g. for '(198?)*atari' only ROMs from the 1980s made by
|
wildcards. E.g. for '(198?)*atari' only ROMs from the 1980s made by
|
||||||
Atari will be listed.
|
Atari will be listed.
|
||||||
</li><li>
|
|
||||||
If 'Incl. subdirectories' is checked, Stella will list matching files
|
|
||||||
from all subdirectories too.
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</br>
|
</br>
|
||||||
|
|
|
@ -707,7 +707,8 @@ inline bool FrameBuffer::drawMessage()
|
||||||
|
|
||||||
if(myMsg.dirty)
|
if(myMsg.dirty)
|
||||||
{
|
{
|
||||||
cerr << "--- draw message ---" << endl;
|
cerr << "m";
|
||||||
|
//cerr << "--- draw message ---" << endl;
|
||||||
|
|
||||||
// Draw the bounded box and text
|
// Draw the bounded box and text
|
||||||
const Common::Rect& dst = myMsg.surface->dstRect();
|
const Common::Rect& dst = myMsg.surface->dstRect();
|
||||||
|
|
|
@ -86,7 +86,7 @@ void ProgressDialog::setMessage(const string& message)
|
||||||
myMessage->setLabel(message);
|
myMessage->setLabel(message);
|
||||||
mySlider->setWidth(lwidth);
|
mySlider->setWidth(lwidth);
|
||||||
|
|
||||||
_cancelWidget->setPos((_w - buttonWidth) / 2, _cancelWidget->getTop());
|
_cancelWidget->setPosX((_w - buttonWidth) / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
|
@ -143,7 +143,7 @@ void TimeLineWidget::drawWidget(bool hilite)
|
||||||
{
|
{
|
||||||
FBSurface& s = _boss->dialog().surface();
|
FBSurface& s = _boss->dialog().surface();
|
||||||
|
|
||||||
cerr << "TimeLineWidget::drawWidget " << typeid(s).name() << endl;
|
//cerr << "TimeLineWidget::drawWidget " << typeid(s).name() << endl;
|
||||||
|
|
||||||
// Draw the label, if any
|
// Draw the label, if any
|
||||||
if(_labelWidth > 0)
|
if(_labelWidth > 0)
|
||||||
|
|
Loading…
Reference in New Issue