Skip to content

Commit

Permalink
Fix this reference
Browse files Browse the repository at this point in the history
  • Loading branch information
aszmyd committed Jul 19, 2018
1 parent a439469 commit 138b0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/StatusBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void run() {
// use KitKat here to be aligned with "Fullscreen" preference
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
int uiOptions = window.getDecorView().getSystemUiVisibility();
if (this.transparent) {
if (StatusBar.this.transparent) {
uiOptions |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
} else {
uiOptions &= ~View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
Expand Down

0 comments on commit 138b0ed

Please sign in to comment.