We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9381842 + ae1abfe commit 0243a92Copy full SHA for 0243a92
1 file changed
src/gui/tray/TrayFoldersMenuButton.qml
@@ -17,7 +17,11 @@ HeaderButton {
17
signal folderEntryTriggered(string fullFolderPath, bool isGroupFolder)
18
19
required property var currentUser
20
- property bool userHasGroupFolders: currentUser.groupFolders.length > 0
+ // Group folders are only navigable from this dropdown when the account has a
21
+ // classic-sync local folder — sandbox restrictions stop us revealing descendants
22
+ // of a file-provider domain in Finder, so file-provider accounts always use the
23
+ // folder button as a single-click "reveal root container" affordance instead.
24
+ property bool userHasGroupFolders: currentUser.hasLocalFolder && currentUser.groupFolders.length > 0
25
property color parentBackgroundColor: "transparent"
26
27
function openMenu() {
0 commit comments