Don't forget about Mac for a tooltip.

This commit is contained in:
Stephen Anthony 2020-11-20 10:44:32 -03:30
parent 4683b234b8
commit bf9b5b5557
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,6 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent,
#ifndef BSPF_MACOS #ifndef BSPF_MACOS
myStartButton = new ButtonWidget(this, font, xpos, ypos, (buttonWidth + 0) / 4, buttonHeight, myStartButton = new ButtonWidget(this, font, xpos, ypos, (buttonWidth + 0) / 4, buttonHeight,
"Select", kLoadROMCmd); "Select", kLoadROMCmd);
myStartButton->setToolTip("Start emulation of selected ROM.");
wid.push_back(myStartButton); wid.push_back(myStartButton);
xpos += (buttonWidth + 0) / 4 + BUTTON_GAP; xpos += (buttonWidth + 0) / 4 + BUTTON_GAP;
@ -220,6 +219,7 @@ LauncherDialog::LauncherDialog(OSystem& osystem, DialogContainer& parent,
"Select", kLoadROMCmd); "Select", kLoadROMCmd);
wid.push_back(myStartButton); wid.push_back(myStartButton);
#endif #endif
myStartButton->setToolTip("Start emulation of selected ROM.");
} }
if(myUseMinimalUI) // Highlight 'Rom Listing' if(myUseMinimalUI) // Highlight 'Rom Listing'
mySelectedItem = 0; mySelectedItem = 0;