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
Copy file name to clipboardExpand all lines: OpenBCI_GUI/OpenBCI_GUI.pde
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -378,10 +378,6 @@ void setup() {
378
378
"If this error persists, contact the OpenBCI team for support.";
379
379
return; // early exit
380
380
}
381
-
382
-
if (!isAdminUser() || isElevationNeeded()) {
383
-
println("OpenBCI_GUI: This application is not being run with Administrator access. This could limit the ability to connect to devices or read/write files.");
384
-
}
385
381
386
382
directoryManager =newDirectoryManager();
387
383
@@ -483,6 +479,10 @@ void delayedSetup() {
483
479
484
480
//Apply GUI-wide settings to front end at the end of setup
485
481
guiSettings.applySettings();
482
+
483
+
if (!isAdminUser() || isElevationNeeded()) {
484
+
outputError("OpenBCI_GUI: This application is not being run with Administrator access. This could limit the ability to connect to devices or read/write files.");
0 commit comments