mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Display all executables under OS X and Linux
This commit is contained in:
parent
e12b24886c
commit
7a3d808195
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