Skip to content

Commit 5067fd7

Browse files
committed
Remove pixel density
1 parent ad4277c commit 5067fd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

OpenBCI_GUI/OpenBCI_GUI.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ void settings() {
337337
globalScreenResolution.append(" X ");
338338
globalScreenResolution.append(displayHeight);
339339
//Account for high-dpi displays on Mac, Windows, and Linux Machines Fixes #968
340-
pixelDensity(displayDensity());
340+
//pixelDensity(displayDensity());
341341
globalScreenDPI = new StringBuilder("High-DPI Screen Detected: ");
342342
globalScreenDPI.append(displayDensity() == 2);
343343
}
@@ -350,7 +350,7 @@ void setup() {
350350
//V1 FONTS
351351
f1 = createFont("fonts/Raleway-SemiBold.otf", 16);
352352
if (isMac()) {
353-
f2 = createFont("Helvetica", 15, true);
353+
f2 = createFont("Arial", 15, true);
354354
} else {
355355
f2 = createFont("fonts/Raleway-Regular.otf", 15);
356356
}

0 commit comments

Comments
 (0)