Skip to content

Commit

Permalink
fix: Don't stretch the symbol in the picker button (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley authored Jan 7, 2023
1 parent f6daedc commit 913e1e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Symbolic/Views/SymbolPicker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@ struct SymbolPicker: View {
} label: {
HStack {
Image(systemName: systemImage.wrappedValue)
.resizable()
.imageScale(.large)
}
.frame(width: 12, height: 12)
.frame(width: 32, height: 32)
}
.controlSize(.large)
.popover(isPresented: $isPresented) {
ScrollView {
LazyVGrid(columns: columns, spacing: 16.0) {
Expand Down

0 comments on commit 913e1e3

Please sign in to comment.