MMTabBarView icon indicating copy to clipboard operation
MMTabBarView copied to clipboard

A Mac OS X tab bar view that works on 10.9+ with Xcode 9.3+. Pull requests welcomed.

Results 23 MMTabBarView issues
Sort by recently updated
recently updated
newest added

This crash started with MacOS 12.3. Using MacOS 12.2.1 is fine. I suspect something to do with the new Universal Control feature introduced in MacOS 12.3. Create a tab bar...

It seems to have something to do with viewDidEndLiveResize: ```-(void)viewDidEndLiveResize { for (MMAttachedTabBarButton *aButton in [self attachedButtons]) { [[aButton indicator] startAnimation:self]; } [self _checkWindowFrame]; [self update:NO]; } ``` If you...

Two serious issue made this excellent component unuseful. 1. It only support NSWindowController but can't be embedded in NSViewController that made it unavailable for most apps that requires customised NSView...

I'm just trying out the demo, but Mojave tabs don't seem to update their colors properly when the window gains/loses focus. You have to manually move the cursor over the...

Mojave-style tabs currently have a blurry drop shadow under the label text that's very visible in Dark Mode, which looks messy. Native tabs do not have that and therefore look...

If you have auto-hiding turned on for your tab bar and then you close the 2nd to the last tab, the update: method would hide the tab bar, then short-circuit...

should add `if ([[self delegate] respondsToSelector:@selector(tabView:toolTipForTabViewItem:)]) { NSString *toolTip = [[self delegate] tabView:[self tabView] toolTipForTabViewItem:item]; [lastButton setToolTip:toolTip]; }` in `- (void)setTabViewItemPinnedToOverflowButton:(NSTabViewItem *)item` ?

It seems that the _identifier_ field in the _NSTabViewItem_ is used for storing the associated tab's view controller under current OSX releases 10.10+ which conflicts with storing the _MMTabBarItem_ there....

I wan't to listen for mouseDown event for the tabbar, but the event doesn't popup to it's parent view or view controller.

I have been trying for 2 hours now and I can not figure out how to install this framework for use in my app. I am a noob, but I...