Skip to content

Commit 86f6bb1

Browse files
committed
adjust clipboard emoji size to be theme-specific
1 parent 1d9708d commit 86f6bb1

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

app/src/processing/app/ui/EditorStatus.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ public void updateMode() {
203203
};
204204

205205
font = mode.getFont("status.font");
206-
emojiFont = new Font("Dialog", Font.PLAIN, 22);
206+
//emojiFont = new Font("Dialog", Font.PLAIN, 21);
207+
emojiFont = mode.getFont("status.emoji.font");
207208
metrics = null;
208209
}
209210

build/shared/lib/theme.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ status.warning.bgcolor = #EF8115
88
status.warning.fgcolor = #FFFFFF
99
status.url.fgcolor = #cccccc
1010
status.font = processing.sans,plain,13
11+
# For the clipboard icon, needs to be a little larger on macOS
12+
status.emoji.font = Dialog,plain,19
13+
status.emoji.font.macosx = Dialog,plain,22
1114

1215
# HEADER TABS
1316
# Settings for the tab area at the top.

0 commit comments

Comments
 (0)