Add the image title text to zoomed images. Issue #1468

This commit is contained in:
Maurice Parker
2019-12-31 18:06:27 -07:00
parent 0d915333e6
commit c2d298b836
5 changed files with 20 additions and 3 deletions

View File

@@ -448,6 +448,7 @@ private struct ImageClickMessage: Codable {
let y: Float
let width: Float
let height: Float
let imageTitle: String?
let imageURL: String
}
@@ -497,7 +498,7 @@ private extension WebViewController {
transition.originImage = image
coordinator.showFullScreenImage(image: image, transitioningDelegate: self)
coordinator.showFullScreenImage(image: image, imageTitle: clickMessage.imageTitle, transitioningDelegate: self)
}
}