Hi, I'm the one who commented that I couldn't copy, paste or cut between the hierarchy tree and layers, well, dunno why, but now it works. Magic! ;)
Thanks a lot for your patience and your superb app and of course for a Mac Version :)
Palipala
Recent community posts
Lovely and extreamly useful for prototyping and as base for later (much later) self-drawing. Let's me first concentrate on what is most important at the beginning and not loose time and faith spending countless hours on creating this or to much by myself. A BIG THANKS for your hard work and still low-cost asset.
Hi there, I got it working on my m1 Macbook pro max. A few steps were necessary:
So, move your app to the Desktop, open a Terminal and cop and paste the commands.
On newer Macs you will most probably need the *sudo spctl --global-disable* version.
And don't forget to re-enable the gatekeeper afterwards.
```bash
# move your app to the Desktop
# disable Gatekeeper
sudo spctl --master-disable
# or
sudo spctl --global-disable # for newer os
# then enter passwort
# do some extended attribute changes
xattr -cr #<drag and drop app from Desktop in here>
# so xattr -cr appname
# re-enable Gatekeeper
sudo spctl --master-enable
# or
sudo spctl --global-enable
# move App back to Appliations
```