diff options
author | Peter Bozsó | 2016-07-14 10:19:04 +0200 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | cdf8ab7949b93f30522ea2742eb4cea3cfcec778 (patch) | |
tree | cd05017158fdc091dc3b5fcac58ff774d0d3bfac | |
parent | 7951a2ea167dee8c380ade40fefa95bb4d9baec1 (diff) | |
download | scummvm-rg350-cdf8ab7949b93f30522ea2742eb4cea3cfcec778.tar.gz scummvm-rg350-cdf8ab7949b93f30522ea2742eb4cea3cfcec778.tar.bz2 scummvm-rg350-cdf8ab7949b93f30522ea2742eb4cea3cfcec778.zip |
GUI: Change 'OK' to 'Hide' on close button of DownloadDialog
-rw-r--r-- | gui/downloaddialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/downloaddialog.cpp b/gui/downloaddialog.cpp index bfdd3d8928..1ae4942928 100644 --- a/gui/downloaddialog.cpp +++ b/gui/downloaddialog.cpp @@ -61,7 +61,7 @@ DownloadDialog::DownloadDialog(uint32 storageId, LauncherDialog *launcher): else _cancelButton = new ButtonWidget(this, "GlobalOptions_Cloud_DownloadDialog.MainButton", _c("Cancel download", "lowres"), 0, kDownloadDialogButtonCmd); - _closeButton = new ButtonWidget(this, "GlobalOptions_Cloud_DownloadDialog.CloseButton", _("OK"), 0, kCloseCmd); + _closeButton = new ButtonWidget(this, "GlobalOptions_Cloud_DownloadDialog.CloseButton", _("Hide"), 0, kCloseCmd); refreshWidgets(); CloudMan.setDownloadTarget(this); |