You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dialog.setText("Considerations about Arduino IDE compatibility");
87
+
dialog.setMessage(FullDialogMessage);
88
+
if (dialog.open() == SWT.CANCEL)
89
+
returnfalse;
90
+
returntrue;
91
+
}
92
+
83
93
/**
84
94
* PerformOK is done when the end users presses OK on a preference page. The order of the execution of the performOK is undefined. This method
85
95
* saves the path variables based on the settings and removes the last used setting.<br/>
@@ -97,17 +107,20 @@ public boolean performOk() {
97
107
returnfalse;
98
108
if (!mIsDirty)
99
109
returntrue;
100
-
if (mArduinoIdeVersion.getStringValue().compareTo("1.5.2") > 0) {
101
-
Stringmessage = "The Arduino core team decided for a library specification which is hard to support. You need to make changes to you arduino libraries to make this work. See eclipse.baeyens.it/librarymadness.html for more info.";
0 commit comments