MiMo42 / MMTabBarView

A Mac OS X tab bar view that works on 10.9+ with Xcode 9.3+. Pull requests welcomed.
http://mimo42.github.com/MMTabBarView/
243 stars 79 forks source link

TabBarView rendered as if parent window is not active if Spotlight menu is open #18

Closed chinhster closed 10 years ago

chinhster commented 10 years ago

To fix, in MMTabBarView.m change isWindowActive method from,

if ([window isKeyWindow]) {

to

if ([window isKeyWindow] || [window isMainWindow]) {