-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
I have a bad but quick fix to the issue of tabs not getting smaller immediately on start.
in the load method, put this
for (id BrowserWindow in [NSApplication.sharedApplication windows])
{
if (![BrowserWindow isKindOfClass:NSClassFromString(@"BrowserWindow")]) return;
NSArray *orderedTabViewItems = [BrowserWindow performSelector:@selector(orderedTabViewItems)];
if ([orderedTabViewItems count] < 1) return;
[[orderedTabViewItems[0] performSelector:@selector(tabBarView)] performSelector:@selector(refreshButtons)];
}
it will loop over all the windows in the browser and find the container of the tabs. it will then force them to refresh right when simbl is loaded.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels