mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Display all executables under OS X and Linux
--HG-- branch : develop
This commit is contained in:
parent
35b79a347b
commit
34734e4fbe
1 changed files with 12 additions and 1 deletions
|
@ -269,7 +269,18 @@ void CProfilesDialog::onExecutableBrowseClicked()
|
|||
|
||||
if (executable.isEmpty()) executable = defaultExecutable;
|
||||
|
||||
executable = QFileDialog::getOpenFileName(this, tr("Please choose Ryzom client executable to launch"), executable, tr("Executables (*.exe)"));
|
||||
QString filter;
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
filter = tr("Executables (*.exe)");
|
||||
#else
|
||||
filter = tr("Executables (*)");
|
||||
#endif
|
||||
|
||||
QFileDialog open;
|
||||
open.setFilter(QDir::Executable | QDir::NoDotAndDotDot | QDir::Files);
|
||||
|
||||
executable = open.getOpenFileName(this, tr("Please choose Ryzom client executable to launch"), executable, filter);
|
||||
|
||||
if (executable.isEmpty()) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue