Skip to content

Commit

Permalink
Fix crash caused by macOS 12 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Nov 1, 2021
1 parent f9d1ffa commit ac180e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gifski/EstimatedFileSize.swift
Expand Up @@ -111,7 +111,8 @@ struct EstimatedFileSizeView: View {
if #available(macOS 11, *) {
ProgressView()
.controlSize(.small)
.scaleEffect(0.7)
// TODO: This causes a crash on macOS 12.0.1
// .scaleEffect(0.7)
.padding(.leading, -4)
.help("Calculating file size estimate")
} else {
Expand Down

2 comments on commit ac180e4

@ptrkstr
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sindresorhus did you happen to know if this has been reported to Apple?

@sindresorhus
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.