Skip to content

Commit

Permalink
Fix some space vs tabs issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed Aug 7, 2016
1 parent 1feb8a8 commit da2ddc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demo/JNWCollectionViewDemo/DemoWindowController.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
GridLayout = 0,
ListLayout = 1,
NSTableViewLayout = 2,
Bindings = 3
Bindings = 3
} LayoutType;

@interface DemoWindowController ()
Expand Down Expand Up @@ -48,9 +48,9 @@ - (void)selectLayout:(id)sender {
self.currentViewController = [[ListDemoViewController alloc] init];
} else if (layout == NSTableViewLayout) {
self.currentViewController = [[NSTableViewDemoViewController alloc] init];
} else if (layout == Bindings) {
self.currentViewController = [[BindingsViewController alloc] init];
}
} else if (layout == Bindings) {
self.currentViewController = [[BindingsViewController alloc] init];
}
}

- (void)setCurrentViewController:(NSViewController *)currentViewController {
Expand Down

0 comments on commit da2ddc2

Please sign in to comment.