Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase font size #50

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions spektrum.pde
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ void setupControls() {
.setText("RECEIVER RANGE:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;
y+=35;

Expand Down Expand Up @@ -398,7 +398,7 @@ void setupControls() {
.setText("UP/DOWN CONVERTER:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;

y+=30;
Expand Down Expand Up @@ -437,7 +437,7 @@ void setupControls() {
.setText("VARIOUS OPTIONS:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;

y+=35;
Expand Down Expand Up @@ -508,7 +508,7 @@ void setupControls() {
.setText("CONFIGURATION PRESETS:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;

// Quick n dirty. Load from file and populate list.
Expand Down Expand Up @@ -605,7 +605,7 @@ void setupControls() {
.setText("VERTICAL SCALE & RF GAIN:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;
tmpLabel.moveTo(tabLabels[TAB_MEASURE]);

Expand Down Expand Up @@ -732,7 +732,7 @@ void setupControls() {
.setText("VIDEO AVERAGING :")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;
tmpLabel.moveTo(tabLabels[TAB_MEASURE]);

Expand Down Expand Up @@ -773,7 +773,7 @@ void setupControls() {
.setText("REFERENCE GRAPH:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;
tmpLabel.moveTo(tabLabels[TAB_MEASURE]);

Expand Down Expand Up @@ -815,7 +815,7 @@ void setupControls() {
.setText("MIN, MAX, MEDIAN HOLD :")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;
tmpLabel.moveTo(tabLabels[TAB_MEASURE]);

Expand Down Expand Up @@ -863,7 +863,7 @@ void setupControls() {
.setText("PRESET / RETURN TO PREVIOUS:")
.setPosition(x-13, y)
.setColorValue(0xffffff00)
.setFont(createFont("ARIAL", 10))
.setFont(createFont("ARIAL", 14))
;
tmpLabel.moveTo(tabLabels[TAB_MEASURE]);

Expand Down