Skip to content

Commit d122883

Browse files
fixed issue #23
1 parent ec99f5b commit d122883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nativescript-slides.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export class SlideContainer extends AbsoluteLayout {
184184
return;
185185
}
186186
// Android Translucent bars API >= 19 only
187-
if (this.androidTranslucentStatusBar === true || this._androidTranslucentNavBar === true && app.android && Platform.device.sdkVersion >= '19') {
187+
if ((this.androidTranslucentStatusBar === true || this._androidTranslucentNavBar === true) && app.android && Platform.device.sdkVersion >= '19') {
188188
let window = app.android.startActivity.getWindow();
189189

190190
// check for status bar

0 commit comments

Comments
 (0)