Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 919160f

Browse files
committedApr 29, 2025·
make icon size a fixed square
1 parent 9eb598f commit 919160f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎Coder-Desktop/Coder-Desktop/Views/VPN/WorkspaceAppIcon.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ struct WorkspaceAppIcon: View {
2626
height: Theme.Size.appIconHeight
2727
)
2828
}
29-
}
29+
}.frame(
30+
width: Theme.Size.appIconWidth,
31+
height: Theme.Size.appIconHeight
32+
)
3033
}.padding(4)
3134
}
3235
.clipShape(RoundedRectangle(cornerRadius: 8))

0 commit comments

Comments
 (0)
Please sign in to comment.