-
-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Paging through images does not yet work #10
Comments
^^ @icke68746 and @g6094199 did not really referenced this issue, it was only tha apart from that: the swiping through images from the gallery works, maybe this is a hint to start with. |
Code that handles the display of the Photo (Gallery and Chat-Direct) is PhotoViewer (:2729 -> openPhoto). |
Going up the callgraph: |
State when calling the openPhoto (PhotoViewer:2729) from the Gallery: windowView.attachedToWindow is false to begin with isInvisible was false, gets set to true object is a PhotoViewer$PlaceProviderObject -> into onPhotoShow:2140 mergeDialogId: 0 -> into updateSelectedCount (:2133) currentAnimation: null |
State when calling the openPhoto (PhotoViewer:2729) from Chat View of a single image: windowView.attachedToWindow is false to begin with NOTE, line 2779: currentAnimation gets set to null because messageObject != null -> into onPhotoShow:2140 mergeDialogId: 0 In Line 2205, if the messageObject is not null and the messages are null, the wrong branch gets selected. messageObject needs to be null here. |
Needing to figure out why all the images (except the first one) only display thumbs. |
blurring only affects images that are small enough to be never thumbed |
For now, you can only open one image at a time in the chat view.
We should add a functionality, where swiping left/right goes to the previous/next image.
The text was updated successfully, but these errors were encountered: