Skip to content

Commit

Permalink
feat: resize tray menu vertically
Browse files Browse the repository at this point in the history
  • Loading branch information
marmos91 committed Jan 28, 2024
1 parent fae2f1e commit ca9c23b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions CubbitDS3Sync/Views/Tray/Views/TrayMenuView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ struct TrayMenuView: View {

Divider()

Spacer()

TrayMenuFooterView(
status: appStatusManager.status.toString(),
version: DefaultSettings.appVersion
Expand All @@ -70,9 +72,11 @@ struct TrayMenuView: View {
}
.frame(
minWidth: 280,
maxWidth: 280
maxWidth: 280,
maxHeight: .infinity
)
.fixedSize(horizontal: true, vertical: true)
.fixedSize(horizontal: true, vertical: false)

}

func canAddMoreDrives() -> Bool {
Expand Down

0 comments on commit ca9c23b

Please sign in to comment.