Skip to content

Commit 3eb6fda

Browse files
committed
fix font typo and add scaling caveat
1 parent 06495c3 commit 3eb6fda

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

app/src/processing/app/ui/Toolkit.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ static public Font getSansFont(int size, int style) {
10361036
}
10371037
*/
10381038
sansFont = createFont("ProcessingSansPro-Regular.ttf", size);
1039-
sansBoldFont = createFont("SourceSansPro-Semibold.ttf", size);
1039+
sansBoldFont = createFont("ProcessingSansPro-Semibold.ttf", size);
10401040

10411041
// additional language constraints
10421042
if ("el".equals(Language.getLanguage())) {

build/shared/revisions.txt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ PROCESSING 3.3 (REV 0257) - 12 February 2017
33
This release adds the ability to the scale the UI or high-resolution
44
(known as HiDPI) screens on Windows and Linux. Sketches don't scale yet,
55
but this will at least make the Editor and Contribution Manager usable
6-
again on more recent Windows and Linux laptops. This release also attempts
7-
to fix several other Windows bugs, detailed below.
6+
again on more recent Windows and Linux laptops.
87

9-
The "unconfirmed" fixes section is a handful of issues that I've never
10-
been able to reproduce, but that should now be fixed. Please confirm at
11-
the links listed to let me know if it's working.
8+
Note: the scaling feature is only meant to patch up problems on HiDPI
9+
devices, it does not provide an all-purpose means for scaling UI elements
10+
independent of the OS.
11+
12+
This release also attempts to fix several other Windows bugs, detailed
13+
below. The "unconfirmed" fixes section is a handful of issues that I've
14+
never been able to reproduce, but that should now be fixed. Please
15+
confirm at the links listed to let me know if it's working.
1216

1317
This is release 3.3 instead of 3.2.5 due to the huge change to the PDE
1418
for scaling, as well as minor API modifications (see below).

0 commit comments

Comments
 (0)