Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jeffrow41
VLC-Android
Commits
904f7abb
Commit
904f7abb
authored
3 years ago
by
Nicolas Pomepuy
Browse files
Options
Downloads
Patches
Plain Diff
Fix UninitializedPropertyAccessException in the video player
parent
da27d742
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
application/vlc-android/src/org/videolan/vlc/gui/video/VideoPlayerResizeDelegate.kt
+1
-1
1 addition, 1 deletion
...c/org/videolan/vlc/gui/video/VideoPlayerResizeDelegate.kt
with
1 addition
and
1 deletion
application/vlc-android/src/org/videolan/vlc/gui/video/VideoPlayerResizeDelegate.kt
+
1
−
1
View file @
904f7abb
...
...
@@ -63,7 +63,7 @@ class VideoPlayerResizeDelegate(private val player: VideoPlayerActivity) {
* Check if the resize overlay is currently shown
* @return true if it's shown
*/
fun
isShowing
()
=
resizeMainView
.
visibility
==
View
.
VISIBLE
fun
isShowing
()
=
::
resizeMainView
.
isInitialized
&&
resizeMainView
.
visibility
==
View
.
VISIBLE
/**
* Show the resize overlay. Inflate it if it's not yet
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment