File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ - (void) awakeFromNib
38
38
object: nil ];
39
39
40
40
[nc addObserver: self
41
- selector: @selector (windowWillStartLiveResitzeWithNotification : )
41
+ selector: @selector (windowWillStartLiveResizeWithNotification : )
42
42
name: NSWindowWillStartLiveResizeNotification
43
43
object: self .view.window];
44
44
45
45
[nc addObserver: self
46
- selector: @selector (windowDidEndLiveResitzeWithNotification : )
46
+ selector: @selector (windowDidEndLiveResizeWithNotification : )
47
47
name: NSWindowDidEndLiveResizeNotification
48
48
object: self .view.window];
49
49
@@ -263,12 +263,12 @@ - (void)preferencesChangedWithNotification:(NSNotification *)theNotification
263
263
[self preferencesChanged ];
264
264
}
265
265
266
- - (void )windowWillStartLiveResitzeWithNotification : (NSNotification *)theNotification
266
+ - (void )windowWillStartLiveResizeWithNotification : (NSNotification *)theNotification
267
267
{
268
268
self.view .autoresizingMask = NSViewMaxXMargin | NSViewMinYMargin | NSViewMaxYMargin | NSViewHeightSizable;
269
269
}
270
270
271
- - (void )windowDidEndLiveResitzeWithNotification : (NSNotification *)theNotification
271
+ - (void )windowDidEndLiveResizeWithNotification : (NSNotification *)theNotification
272
272
{
273
273
self.view .autoresizingMask = NSViewMinXMargin | NSViewMaxXMargin | NSViewMinYMargin | NSViewMaxYMargin | NSViewWidthSizable | NSViewHeightSizable;
274
274
self.view .frame = self.view .superview .bounds ;
You can’t perform that action at this time.
0 commit comments