Skip to content

Commit 6eb25ba

Browse files
committed
Increase Function key font size to 32
Signed-off-by: Janne Grunau <[email protected]>
1 parent ed79ce5 commit 6eb25ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl FunctionLayer {
9191
c.set_source_rgb(0.0, 0.0, 0.0);
9292
c.paint().unwrap();
9393
c.select_font_face("sans-serif", FontSlant::Normal, FontWeight::Normal);
94-
c.set_font_size(24.0);
94+
c.set_font_size(32.0);
9595
for (i, button) in self.buttons.iter().enumerate() {
9696
let left_edge = i as f64 * (button_width + spacing_width) + spacing_width;
9797
let color = if active_buttons[i] { BUTTON_COLOR_ACTIVE } else { BUTTON_COLOR_INACTIVE };

0 commit comments

Comments
 (0)