Skip to content

Commit

Permalink
[iOS] Fix Clipping Add User Button (#1441)
Browse files Browse the repository at this point in the history
* Add what was removed

* tvos

---------

Co-authored-by: chickdan <=>
Co-authored-by: Ethan Pippin <ethanpippin2343@gmail.com>
  • Loading branch information
chickdan and LePips authored Feb 26, 2025
1 parent 35b72b3 commit d2c5ac9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ extension SelectUserView {
),
pipeline: .Swiftfin.local
)
.aspectRatio(1, contentMode: .fill)
.clipShape(.circle)
.overlay {
if isEditing {
ZStack(alignment: .bottom) {
Expand Down
2 changes: 2 additions & 0 deletions Swiftfin/Views/SelectUserView/Components/UserGridButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ extension SelectUserView {
pipeline: .Swiftfin.local
)
}
.aspectRatio(1, contentMode: .fill)
.clipShape(.circle)
.overlay {
if isEditing {
ZStack(alignment: .bottomTrailing) {
Expand Down

0 comments on commit d2c5ac9

Please sign in to comment.