Skip to content

Commit

Permalink
Fix freeze on entering full screen window mode
Browse files Browse the repository at this point in the history
On macOS Mojave, window freeze when entering full screen window mode.
If the window is frozen, clicking outside the app allows it to complete
the transition to full screen mode. So even just clicking on another
icon in the Dock allows it to continue (Issue MiMo42#63).

Brendan Duddridge (@brendand) noticed that the problem has to do with
MMTabBarView’s -viewDidEndLiveResize. Removing the animation works
around it.
  • Loading branch information
barijaona committed Jan 5, 2019
1 parent 8b39969 commit 06b4bb8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions MMTabBarView/MMTabBarView/MMTabBarView.m
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,6 @@ - (void)viewWillStartLiveResize {
}

-(void)viewDidEndLiveResize {
for (MMAttachedTabBarButton *aButton in self.attachedButtons) {
[aButton.indicator startAnimation:self];
}

[self _checkWindowFrame];
[self update:NO];
}
Expand Down

0 comments on commit 06b4bb8

Please sign in to comment.