Browse Source

Merge branch 'release/11.0' of ssh://code.fineres.com:7999/~kerry/design_10.0 into release/11.0

bugfix/11.0
kerry 3 years ago
parent
commit
b1326bcad5
  1. 19
      designer-base/src/main/java/com/fr/design/mainframe/share/collect/ComponentCollector.java

19
designer-base/src/main/java/com/fr/design/mainframe/share/collect/ComponentCollector.java

@ -343,18 +343,12 @@ public class ComponentCollector implements XMLable {
} }
public void clickComponentSetting() { public void clickComponentSetting() {
boolean changed = false;
int firstShowReact = ComponentReuseNotificationInfo.getInstance().isWidgetLibHasRefreshed() ? 2 : -1; int firstShowReact = ComponentReuseNotificationInfo.getInstance().isWidgetLibHasRefreshed() ? 2 : -1;
if (this.firstShowReact != firstShowReact) { if (this.firstShowReact != firstShowReact) {
this.firstShowReact = firstShowReact; collectFirstShowReact(firstShowReact);
changed = true;
} }
if (this.embededFilterReact == 0 && ComponentReuseNotificationInfo.getInstance().isWidgetLibHasRefreshed()) { if (this.embededFilterReact == 0 && ComponentReuseNotificationInfo.getInstance().isWidgetLibHasRefreshed()) {
this.embededFilterReact = -1; collectEmbededFilterReact(-1);
changed = true;
}
if (changed) {
saveInfo();
} }
} }
@ -371,11 +365,16 @@ public class ComponentCollector implements XMLable {
return; return;
} }
if (System.currentTimeMillis() - ComponentReuseNotificationInfo.getInstance().getFirstDragEndTime() <= ONE_MINUTE) { if (System.currentTimeMillis() - ComponentReuseNotificationInfo.getInstance().getFirstDragEndTime() <= ONE_MINUTE) {
this.dynamicEffectReact = 1; collectDynamicEffectReactFlag(1);
saveInfo();
} }
} }
public void collectDynamicEffectReactFlag(int flag) {
this.dynamicEffectReact = flag;
saveInfo();
}
public void clearSortType() { public void clearSortType() {
sortType = JSONFactory.createJSON(JSON.ARRAY); sortType = JSONFactory.createJSON(JSON.ARRAY);
} }

Loading…
Cancel
Save