Loading packages/SystemUI/src/com/android/systemui/navigationbar/NavigationBarModule.java +3 −1 Original line number Diff line number Diff line Loading @@ -78,7 +78,9 @@ public interface NavigationBarModule { SysUiState defaultState, PerDisplayRepository<SysUiState> repository) { if (ShadeWindowGoesAround.isEnabled()) { return repository.get(context.getDisplayId()); SysUiState displaySpecific = repository.get(context.getDisplayId()); if (displaySpecific == null) return defaultState; return displaySpecific; } else { return defaultState; } Loading Loading
packages/SystemUI/src/com/android/systemui/navigationbar/NavigationBarModule.java +3 −1 Original line number Diff line number Diff line Loading @@ -78,7 +78,9 @@ public interface NavigationBarModule { SysUiState defaultState, PerDisplayRepository<SysUiState> repository) { if (ShadeWindowGoesAround.isEnabled()) { return repository.get(context.getDisplayId()); SysUiState displaySpecific = repository.get(context.getDisplayId()); if (displaySpecific == null) return defaultState; return displaySpecific; } else { return defaultState; } Loading