-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: 4.6.2
-
Fix Version/s: 5.3.0 RC1
-
Component/s: Widgets: Widgets and Dialogs
-
Labels:None
-
Environment:Cocoa
-
Commits:b5eb850e0deb61ff71e26a5a2d0e070b91306aa2
On the cocoa port, it is not possible to use cmd + a to select all files in the QFileDialog. This is possible on Windows and the carbon port.
#include <QtGui> int main(int argc, char *argv[]) { QApplication app(argc, argv); //static method does not work either. // QFileDialog::getOpenFileNames(parent, QObject::tr("Open"), qApp->applicationDirPath() + "../../../../", "*", 0, QFileDialog::DontUseSheet); QFileDialog fd; fd.setFileMode(QFileDialog::ExistingFiles); qDebug () << fd.exec(); return app.exec(); }
Is it a bug in NSOpenPanel, or is it something that needs to be set explicitly when Qt is constructing the native dialog?
- is related to
-
QTBUG-17291 QFileDialog native dialog does not accept "standard" shortcuts on OSX
-
- Closed
-