Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
Thanks a lot at @Quasímodo for pushing me in the right direction. The problem turned out to be an extended attribute set for this folder. To see if there are extended attributes, one can use xa...
Answer
#1: Initial revision
Thanks a lot at @Quasímodo for pushing me in the right direction. The problem turned out to be an extended attribute set for this folder. To see if there are extended attributes, one can use ``` xattr Music ``` In my case, this gave `com.apple.FinderInfo`, so I removed it with ``` xattr -d com.apple.FinderInfo Music ``` and now the folder behaves normally.