We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 7f08c37 commit 4c33582Copy full SHA for 4c33582
src/core/qgsbrowsermodel.cpp
@@ -66,6 +66,13 @@ void QgsBrowserModel::addRootItems()
66
mRootItems << item;
67
}
68
69
+#ifdef Q_WS_MAC
70
+ QString path = QString( "/Volumes" );
71
+ QgsDirectoryItem *vols = new QgsDirectoryItem( NULL, path, path );
72
+ connectItem( vols );
73
+ mRootItems << vols;
74
+#endif
75
+
76
// Add non file top level items
77
QStringList providersList = QgsProviderRegistry::instance()->providerList();
78
providersList.sort();
0 commit comments