summaryrefslogtreecommitdiff
path: root/src/macos.m
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-11-26 21:46:44 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-11-26 21:46:44 +0200
commit91e8a9aa0e9ffc4fb76560944261dca2d6b22a51 (patch)
tree894fbc8443db8ab170530732399f64c4f676770a /src/macos.m
parentb961ac4398f01601b7de384a40062b274dc706ea (diff)
macOS: Touch bar buttons in the wrong order
Diffstat (limited to 'src/macos.m')
-rw-r--r--src/macos.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macos.m b/src/macos.m
index ceaf14f4..cb5d76e2 100644
--- a/src/macos.m
+++ b/src/macos.m
@@ -287,7 +287,7 @@ static void appearanceChanged_MacOS_(NSString *name) {
287 else if ([identifier isEqualToString:sidebarMode_TouchId_]) { 287 else if ([identifier isEqualToString:sidebarMode_TouchId_]) {
288 NSCustomTouchBarItem *item = [[NSCustomTouchBarItem alloc] initWithIdentifier:sidebarMode_TouchId_]; 288 NSCustomTouchBarItem *item = [[NSCustomTouchBarItem alloc] initWithIdentifier:sidebarMode_TouchId_];
289 NSSegmentedControl *seg = 289 NSSegmentedControl *seg =
290 [NSSegmentedControl segmentedControlWithLabels:@[ @"Feeds", @"Bookmarks", @"History", @"Idents", @"Outline"] 290 [NSSegmentedControl segmentedControlWithLabels:@[ @"Bookmarks", @"Feeds", @"History", @"Idents", @"Outline"]
291 trackingMode:NSSegmentSwitchTrackingMomentary 291 trackingMode:NSSegmentSwitchTrackingMomentary
292 target:[[NSApplication sharedApplication] delegate] 292 target:[[NSApplication sharedApplication] delegate]
293 action:@selector(sidebarModePressed:)]; 293 action:@selector(sidebarModePressed:)];