Skip to content

Commit 138b0ed

Browse files
committed
Fix this reference
1 parent a439469 commit 138b0ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/android/StatusBar.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void run() {
101101
// use KitKat here to be aligned with "Fullscreen" preference
102102
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
103103
int uiOptions = window.getDecorView().getSystemUiVisibility();
104-
if (this.transparent) {
104+
if (StatusBar.this.transparent) {
105105
uiOptions |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
106106
} else {
107107
uiOptions &= ~View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;

0 commit comments

Comments
 (0)