INAppStoreWindow icon indicating copy to clipboard operation
INAppStoreWindow copied to clipboard

setMovable flag doesn't work

Open linuxsable opened this issue 10 years ago • 0 comments

@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.

linuxsable avatar Sep 19 '14 21:09 linuxsable