Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.6.2
-
None
-
Cocoa
-
b5eb850e0deb61ff71e26a5a2d0e070b91306aa2
Description
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?
Attachments
Issue Links
- relates to
-
QTBUG-17291 QFileDialog native dialog does not accept "standard" shortcuts on OSX
- Closed