Fix label selection on macos

This commit is contained in:
Jackson Harper
2023-05-31 16:10:09 +08:00
parent 3460150d5e
commit 2f879386a3

View File

@ -72,9 +72,11 @@ struct ApplyLabelsView: View {
Image(systemName: "checkmark")
}
}
.contentShape(Rectangle())
}
)
.padding(.vertical, 5)
.frame(maxWidth: .infinity, alignment: .leading)
#if os(macOS)
.buttonStyle(PlainButtonStyle())
#endif