make sure we dont try changing view visibility from the bg thread

This commit is contained in:
tibbi 2023-06-11 23:24:18 +02:00
parent b133368b9e
commit 11dd5ac501
2 changed files with 6 additions and 4 deletions

View file

@ -78,7 +78,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:7e9642d830'
implementation 'com.github.SimpleMobileTools:Simple-Commons:988f06df1b'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
implementation 'it.sephiroth.android.exif:library:1.0.1'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.25'

View file

@ -759,9 +759,11 @@ class PhotoFragment : ViewPagerFragment() {
false
}
mView.panorama_outline.beVisibleIf(mIsPanorama)
if (mIsFullscreen) {
mView.panorama_outline.alpha = 0f
activity?.runOnUiThread {
mView.panorama_outline?.beVisibleIf(mIsPanorama)
if (mIsFullscreen) {
mView.panorama_outline?.alpha = 0f
}
}
}