Skip to content

Commit

Permalink
chore: fix swiftc errors on xcode 13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lwouis committed Oct 9, 2024
1 parent 4ca5e77 commit 7e39864
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ class CustomizeStyleSheet: SheetWindow {
let selectedIndex = sender.selectedSegment
[showHideView, advancedView].enumerated().forEach { (index, view) in
if selectedIndex == index {
view.isHidden = false
view!.isHidden = false
} else {
view.isHidden = true
view!.isHidden = true
}
}
adjustWindowHeight()
Expand Down

0 comments on commit 7e39864

Please sign in to comment.