-
Notifications
You must be signed in to change notification settings - Fork 80
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
Fix slideshow #12
Fix slideshow #12
Conversation
@gmasil as per the SMT reports, it looks like this bug only appears on Android 14? |
@naveensingh I can confirm this bug (checked on emulator) on Android 14. On Android 13 everything works fine. |
@gmasil with this solution, the slideshow can no longer be stopped by taping on the currently visible image. The slideshow is being stopped because the |
Oh I didn't know that you could stop the slideshow by tapping. I'll try to investigate further, thanks! |
The isInMultiWindowMode condition does not work. It works if you replace the code
by
|
@Goodwy thanks a lot, this seems to be working. |
These PRs are being closed automatically by GitHub or some glitch. I'm not closing them. |
I detached all the forked Fossify repositories and as a result, PRs originating from SMT forks are being closed automatically. Please consider the following solution:
Sorry for the inconvenience. |
Now that @Goodwy provided the solution he/she might as well have the honor. |
Closes #35 Original PR: #12 (comment)
This PR was originally created here: SimpleMobileTools/Simple-Gallery#3043
Currently the slideshow is not working, see SimpleMobileTools/Simple-Gallery#3020.
When the slideshow is starting the
ViewPagerActivity
is activated and will callinitContinue()
wherecheckSystemUI()
is called. This will stop the slideshow immediately if the activity is not in fullscreen mode.I removed the call to
stopSlideshow()
.Edit: Resolves #35