mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
GUI: Add tooltips to Cancel/Apply/OK buttons in Options. Bugreport #10313
This commit is contained in:
parent
50b97c723a
commit
edef02acda
@ -1953,9 +1953,9 @@ void GlobalOptionsDialog::build() {
|
||||
_tabWidget = tab;
|
||||
|
||||
// Add OK & Cancel buttons
|
||||
new ButtonWidget(this, "GlobalOptions.Cancel", _("Cancel"), Common::U32String(), kCloseCmd);
|
||||
new ButtonWidget(this, "GlobalOptions.Apply", _("Apply"), Common::U32String(), kApplyCmd);
|
||||
new ButtonWidget(this, "GlobalOptions.Ok", _("OK"), Common::U32String(), kOKCmd);
|
||||
new ButtonWidget(this, "GlobalOptions.Cancel", _("Cancel"), _("Discard changes and close the dialog"), kCloseCmd);
|
||||
new ButtonWidget(this, "GlobalOptions.Apply", _("Apply"), _("Apply changes without closing the dialog"), kApplyCmd);
|
||||
new ButtonWidget(this, "GlobalOptions.Ok", _("OK"), _("Apply changes and close the dialog"), kOKCmd);
|
||||
|
||||
#ifdef USE_FLUIDSYNTH
|
||||
_fluidSynthSettingsDialog = new FluidSynthSettingsDialog();
|
||||
|
Loading…
x
Reference in New Issue
Block a user