修复由白天黑夜模式回调引起的问题:事件点会被清空。

This commit is contained in:
wangcongtao
2020-09-14 21:00:40 +08:00
parent 98c2873243
commit 154ac337c2
4 changed files with 34 additions and 1 deletions

View File

@@ -267,4 +267,14 @@ public class DebugConfig {
public static String getSpGuide(){
return SP_GUIDE;
}
private static boolean isSkinSupported = false;
public static void setSkinSupported( boolean isSkinSupported ) {
DebugConfig.isSkinSupported = isSkinSupported;
}
public static boolean isSkinSupported() {
return isSkinSupported;
}
}