diff --git a/powerbell/build.properties b/powerbell/build.properties index c39ec2ca..67353b5c 100644 --- a/powerbell/build.properties +++ b/powerbell/build.properties @@ -1,8 +1,8 @@ #Created by .winboll/winboll_app_build.gradle -#Wed Dec 03 10:59:39 GMT 2025 +#Wed Dec 03 11:30:35 GMT 2025 stageCount=13 libraryProject= baseVersion=15.11 publishVersion=15.11.12 -buildCount=129 +buildCount=131 baseBetaVersion=15.11.13 diff --git a/powerbell/src/main/java/cc/winboll/studio/powerbell/fragments/MainViewFragment.java b/powerbell/src/main/java/cc/winboll/studio/powerbell/fragments/MainViewFragment.java index fe764fb5..903bfdb0 100644 --- a/powerbell/src/main/java/cc/winboll/studio/powerbell/fragments/MainViewFragment.java +++ b/powerbell/src/main/java/cc/winboll/studio/powerbell/fragments/MainViewFragment.java @@ -322,6 +322,7 @@ public class MainViewFragment extends Fragment { public void reloadBackground() { BackgroundSourceUtils utils = BackgroundSourceUtils.getInstance(getActivity()); + mBgSourceUtils.loadSettings(); BackgroundBean bean = utils.getCurrentBackgroundBean(); mBackgroundView.loadBackground(bean); } diff --git a/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/BackgroundSourceUtils.java b/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/BackgroundSourceUtils.java index 37a3ad53..0fc36547 100644 --- a/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/BackgroundSourceUtils.java +++ b/powerbell/src/main/java/cc/winboll/studio/powerbell/utils/BackgroundSourceUtils.java @@ -314,7 +314,7 @@ public class BackgroundSourceUtils { /** * 加载背景图片配置数据(核心:确保current/preview是两份独立的BackgroundBean实例) */ - void loadSettings() { + public void loadSettings() { // 1. 加载正式Bean(独立实例:从currentBackgroundBean.json加载,不存在则新建) currentBackgroundBean = BackgroundBean.loadBeanFromFile(currentBackgroundBeanFile.getAbsolutePath(), BackgroundBean.class); if (currentBackgroundBean == null) {