diff options
Diffstat (limited to 'macosx/HBTitleSelectionController.m')
-rw-r--r-- | macosx/HBTitleSelectionController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBTitleSelectionController.m b/macosx/HBTitleSelectionController.m index 001e9c4d6..b92a92065 100644 --- a/macosx/HBTitleSelectionController.m +++ b/macosx/HBTitleSelectionController.m @@ -128,13 +128,13 @@ static NSTouchBarItemIdentifier HBTouchBarCancel = @"fr.handbrake.addToQueue"; NSCustomTouchBarItem *cancelItem = [[NSCustomTouchBarItem alloc] initWithIdentifier:HBTouchBarAdd]; cancelItem.customizationLabel = NSLocalizedString(@"Cancel", @"Touch bar"); NSButton *cancelButton = [NSButton buttonWithTitle:NSLocalizedString(@"Cancel", @"Touch bar") target:self action:@selector(cancel:)]; - [cancelButton.widthAnchor constraintGreaterThanOrEqualToConstant:200].active = YES; + [cancelButton.widthAnchor constraintGreaterThanOrEqualToConstant:160].active = YES; cancelItem.view = cancelButton; NSCustomTouchBarItem *addItem = [[NSCustomTouchBarItem alloc] initWithIdentifier:HBTouchBarCancel]; addItem.customizationLabel = NSLocalizedString(@"Add To Queue", @"Touch bar"); NSButton *addButton = [NSButton buttonWithTitle:NSLocalizedString(@"Add To Queue", @"Touch bar") target:self action:@selector(add:)]; - [addButton.widthAnchor constraintGreaterThanOrEqualToConstant:200].active = YES; + [addButton.widthAnchor constraintGreaterThanOrEqualToConstant:160].active = YES; addButton.keyEquivalent = @"\r"; addItem.view = addButton; |