Fix macOS build

This commit is contained in:
Jonas Kvinge 2020-03-15 02:00:13 +01:00
parent 11f5004112
commit 454c3d1a3c
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ void OpenInFileBrowser(const QList<QUrl> &urls) {
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)
OpenInFileManager(path);
#elif Q_OS_MACOS
#elif defined(Q_OS_MACOS)
// Revealing multiple files in the finder only opens one window, so it also makes sense to reveal at most one per directory
RevealFileInFinder(path);
#elif defined(Q_OS_WIN32)