Created
March 11, 2023 13:23
-
-
Save iby/3380e51bfc40a07e25224ce2bf4f5e27 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is a hideous hack for 10.11 where constraints are applied for detached view and the entire | |
// toolset panel looks like a huge cock… | |
if #available(macOS 10.13, *) { | |
} else if self.instructionView.isHidden && self.instructionView.superview != nil { | |
self.stackView.removeView(self.instructionView) | |
} else if !self.instructionView.isHidden && self.instructionView.superview == nil { | |
self.stackView.insertView(self.instructionView, at: 0, in: .center) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment