diff options
author | Alexander Tkachev | 2016-07-04 13:00:26 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 73bb2e20afdd625998a1438adf29e5d9dbaa2929 (patch) | |
tree | bf4a0517e20bf037229d86e049a897164042e4a5 /gui/downloaddialog.cpp | |
parent | 4aa8e23ea24e275f6b68fe6ed773ee2129d4de26 (diff) | |
download | scummvm-rg350-73bb2e20afdd625998a1438adf29e5d9dbaa2929.tar.gz scummvm-rg350-73bb2e20afdd625998a1438adf29e5d9dbaa2929.tar.bz2 scummvm-rg350-73bb2e20afdd625998a1438adf29e5d9dbaa2929.zip |
GUI: Clean up in RemoteBrowser
Diffstat (limited to 'gui/downloaddialog.cpp')
-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 e94b19634b..6e9410dd51 100644 --- a/gui/downloaddialog.cpp +++ b/gui/downloaddialog.cpp @@ -42,7 +42,7 @@ DownloadDialog::DownloadDialog(uint32 storageId): _backgroundType = GUI::ThemeEngine::kDialogBackgroundPlain; _browser = new BrowserDialog(_("Select directory where to download game data"), true); - _remoteBrowser = new RemoteBrowserDialog(_("Select directory with game data"), true); + _remoteBrowser = new RemoteBrowserDialog(_("Select directory with game data")); _messageText = new StaticTextWidget(this, "GlobalOptions_Cloud_DownloadDialog.DialogDesc", _("Press the button to download a directory")); _mainButton = new ButtonWidget(this, "GlobalOptions_Cloud_DownloadDialog.MainButton", _("Start download"), 0, kDownloadDialogButtonCmd); |