Skip to content

Commit

Permalink
Fixes #2253 - Fix timeline thumbnail frames for media missing sizing …
Browse files Browse the repository at this point in the history
…info
  • Loading branch information
stefanceriu authored Dec 18, 2023
1 parent 123164f commit b1b8bbc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
13 changes: 9 additions & 4 deletions ElementX/Sources/Other/SwiftUI/Layout/TimelineMediaFrame.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ extension View {
aspectRatio(contentAspectRatio, contentMode: .fit)
.frame(minHeight: minMediaHeight, maxHeight: minMediaHeight)
} else {
aspectRatio(contentAspectRatio, contentMode: .fit)
.frame(maxHeight: min(maxMediaHeight, max(minMediaHeight, contentHeight ?? .infinity)))
// Required to prevent the reply details to get higher priority in rendering the width of the view.
.aspectRatio(contentAspectRatio, contentMode: .fit)
if let contentAspectRatio {
aspectRatio(contentAspectRatio, contentMode: .fit)
.frame(maxHeight: min(maxMediaHeight, max(minMediaHeight, contentHeight ?? .infinity)))
// Required to prevent the reply details to get higher priority in rendering the width of the view.
.aspectRatio(contentAspectRatio, contentMode: .fit)
} else { // Otherwise let the image load and use its native aspect ratio with a max height
aspectRatio(contentMode: .fit)
.frame(maxHeight: maxMediaHeight)
}
}
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions changelog.d/2253.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix timeline thumbnail frames for media missing sizing info

0 comments on commit b1b8bbc

Please sign in to comment.