mirror of https://gitee.com/makejava/EasyCode.git
修复针对Mac设备的未初始化就进行更改判断造成的BUG
This commit is contained in:
parent
950b8b80fe
commit
0465d18d8f
|
@ -98,7 +98,10 @@ public class GlobalConfigSettingPanel extends AbstractGroupPanel<GlobalConfigGro
|
|||
*/
|
||||
@Override
|
||||
public boolean isModified() {
|
||||
editTemplatePanel.refresh();
|
||||
// 修复BUG,当初始未完成时,插件进行修改判断
|
||||
if (editTemplatePanel != null) {
|
||||
editTemplatePanel.refresh();
|
||||
}
|
||||
return !configInfo.getGlobalConfigGroupMap().equals(group) || !configInfo.getCurrGlobalConfigGroupName().equals(currGroupName);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue