indragiek / INAppStoreWindow

NSWindow subclass with a highly customizable title bar and traffic lights
BSD 2-Clause "Simplified" License
1.06k stars 162 forks source link

setMovable flag doesn't work #187

Open linuxsable opened 9 years ago

linuxsable commented 9 years ago
@implementation MenuWindowController

- (id)init {
    if (self = [super initWithWindowNibName:@"MenuWindowController"]) {
        [self.window setMovable:NO];
    }

    return self;
}

Expected: window is no longer dragable. Results: window is draggable. Converting window to NSWindow via NIB fixes the issue.

Thanks.