We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad4277c commit 5067fd7Copy full SHA for 5067fd7
1 file changed
OpenBCI_GUI/OpenBCI_GUI.pde
@@ -337,7 +337,7 @@ void settings() {
337
globalScreenResolution.append(" X ");
338
globalScreenResolution.append(displayHeight);
339
//Account for high-dpi displays on Mac, Windows, and Linux Machines Fixes #968
340
- pixelDensity(displayDensity());
+ //pixelDensity(displayDensity());
341
globalScreenDPI = new StringBuilder("High-DPI Screen Detected: ");
342
globalScreenDPI.append(displayDensity() == 2);
343
}
@@ -350,7 +350,7 @@ void setup() {
350
//V1 FONTS
351
f1 = createFont("fonts/Raleway-SemiBold.otf", 16);
352
if (isMac()) {
353
- f2 = createFont("Helvetica", 15, true);
+ f2 = createFont("Arial", 15, true);
354
} else {
355
f2 = createFont("fonts/Raleway-Regular.otf", 15);
356
0 commit comments