mirror of https://gitee.com/makejava/EasyCode.git
修复初次进入编辑面板时,编辑框无内容BUG
This commit is contained in:
parent
e24ea01047
commit
ac228a0c90
|
@ -131,11 +131,11 @@ public class GlobalConfigSettingForm implements Configurable, BaseSettings {
|
|||
if (this.currGlobalConfigGroup == null) {
|
||||
this.currGlobalConfigGroup = this.globalConfigGroupMap.get(GlobalDict.DEFAULT_GROUP_NAME);
|
||||
}
|
||||
this.refreshUiVal();
|
||||
// 解决reset后编辑框未清空BUG
|
||||
if (this.editorComponent != null) {
|
||||
this.editorComponent.setFile(null);
|
||||
}
|
||||
this.refreshUiVal();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -131,11 +131,11 @@ public class TemplateSettingForm implements Configurable, BaseSettings {
|
|||
if (this.currTemplateGroup == null) {
|
||||
this.currTemplateGroup = this.templateGroupMap.get(GlobalDict.DEFAULT_GROUP_NAME);
|
||||
}
|
||||
this.refreshUiVal();
|
||||
// 解决reset后编辑框未清空BUG
|
||||
if (this.editorComponent != null) {
|
||||
this.editorComponent.setFile(null);
|
||||
}
|
||||
this.refreshUiVal();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue