File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/com/magento/idea/magento2plugin/project Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -105,12 +105,16 @@ public boolean isModified() {
105
105
final boolean licenseChanged = !moduleDefaultLicenseName .getText ().equals (
106
106
Settings .defaultLicense
107
107
);
108
+ final boolean versionChanged = !magentoVersion .getText ().equals (
109
+ getSettings ().magentoVersion
110
+ );
108
111
final boolean statusChanged = !pluginEnabled .isSelected () == getSettings ().pluginEnabled ;
109
112
final boolean mftfSupportChanged = mftfSupportEnabled .isSelected ()
110
113
!= getSettings ().mftfSupportEnabled ;
111
114
final boolean magentoPathChanged = isMagentoPathChanged ();
112
115
113
- return statusChanged || licenseChanged || mftfSupportChanged || magentoPathChanged ;
116
+ return statusChanged || licenseChanged || mftfSupportChanged
117
+ || magentoPathChanged || versionChanged ;
114
118
}
115
119
116
120
private void resolveMagentoVersion () {
You can’t perform that action at this time.
0 commit comments