I\'m using a textured window that has a tab bar along the top of it, just below the title bar.
I\'ve used -setContentBorderThickness:forEdge: on the window to make t
I tried the mouseDownCanMoveWindow solution (https://stackoverflow.com/a/4564146/901641) but it didn't work for me. I got rid of that method and instead added this to my window subclass:
mouseDownCanMoveWindow
- (BOOL)isMovableByWindowBackground { return YES; }
which worked like a charm.