Skip to content

Commit ad4277c

Browse files
committed
Code Review - Change textfield font to helvetica on mac
1 parent b69fc60 commit ad4277c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

OpenBCI_GUI/ConsoleLog.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static class ConsoleWindow extends PApplet implements Runnable {
6565

6666
clipboardCopy = new ClipHelper();
6767
cp5 = new ControlP5(this);
68-
PFont textAreaFont = createFont("Arial", 12, true);
68+
PFont textAreaFont = createFont("Helvetica", 12, true);
6969
consoleTextArea = cp5.addTextarea("ConsoleWindow")
7070
.setPosition(0, headerHeight)
7171
.setSize(width, height - headerHeight)

OpenBCI_GUI/FilterUI.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ class FilterUIPopup extends PApplet implements Runnable {
547547
.setPosition(_x, _y)
548548
.setCaptionLabel("")
549549
.setSize(_w, _h)
550-
.setFont(createFont("Arial",12,true))
550+
.setFont(createFont("Helvetica",12,true))
551551
.setFocus(false)
552552
.setColor(color(26, 26, 26))
553553
.setColorBackground(color(255, 255, 255)) // text field bg color

OpenBCI_GUI/OpenBCI_GUI.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ void setup() {
350350
//V1 FONTS
351351
f1 = createFont("fonts/Raleway-SemiBold.otf", 16);
352352
if (isMac()) {
353-
f2 = createFont("Arial", 15, true);
353+
f2 = createFont("Helvetica", 15, true);
354354
} else {
355355
f2 = createFont("fonts/Raleway-Regular.otf", 15);
356356
}

OpenBCI_GUI/SignalCheckThresholds.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class SignalCheckThresholdUI {
4545
.setPosition(_x, _y)
4646
.setCaptionLabel("")
4747
.setSize(_w, _h)
48-
.setFont(createFont("Arial",12,true))
48+
.setFont(createFont("Helvetica",12,true))
4949
.setFocus(false)
5050
.setColor(color(26, 26, 26))
5151
.setColorBackground(color(255, 255, 255)) // text field bg color

0 commit comments

Comments
 (0)