Android - TMP PATCH - Do not deactivate DisplayPlugin as it makes the black screen problem

This commit is contained in:
Cristian Luis Duarte 2018-04-20 19:26:53 -03:00
parent 8235f999d8
commit 5499787385

View file

@ -127,13 +127,15 @@ public class InterfaceActivity extends QtActivity {
@Override
protected void onStart() {
super.onStart();
nativeEnterForeground();
// TODO Fix displayPlugin deactivate so it doesn't leave us with a black screen Interface
//nativeEnterForeground();
}
@Override
protected void onStop() {
super.onStop();
nativeEnterBackground();
// TODO Fix displayPlugin deactivate so it doesn't leave us with a black screen Interface
//nativeEnterBackground();
}
@Override