mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-29 05:44:31 +00:00
22 lines
389 B
Objective-C
22 lines
389 B
Objective-C
//
|
|
// MyDocumentWindow.m
|
|
// MacDependency
|
|
//
|
|
// Created by Konrad Windszus on 04.09.09.
|
|
// Copyright 2009 Konrad Windszus. All rights reserved.
|
|
//
|
|
// Window class for document windows
|
|
//
|
|
#import "MyDocumentWindow.h"
|
|
|
|
|
|
@implementation MyDocumentWindow
|
|
|
|
-(void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
|
|
// set bottom bar
|
|
[self setContentBorderThickness:24.0 forEdge:NSMinYEdge];
|
|
}
|
|
@end
|