diff options
author | Damiano Galassi <[email protected]> | 2019-08-13 10:35:05 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-08-13 10:35:05 +0200 |
commit | d470602147d405d579a6d918050ba7dd86f31fa2 (patch) | |
tree | e7e6227e3368a53c57bc69bf2ed317e27beee0c7 /macosx | |
parent | f2a619679551fd988c4e28bf68108f174d64fb3d (diff) |
MacGui: set a default queue window size.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBQueueController.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index 3a5f5d4aa..26eeb37c0 100644 --- a/macosx/HBQueueController.m +++ b/macosx/HBQueueController.m @@ -126,6 +126,7 @@ _splitViewController = [[NSSplitViewController alloc] init]; _splitViewController.splitView = _splitView; _splitViewController.view.wantsLayer = YES; + [_splitViewController.view setFrameSize:NSMakeSize(780, 500)]; _splitViewController.splitView.vertical = YES; _tableViewController = [[HBQueueTableViewController alloc] initWithQueue:self.queue delegate:self]; |