We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed79ce5 commit 6eb25baCopy full SHA for 6eb25ba
1 file changed
src/main.rs
@@ -91,7 +91,7 @@ impl FunctionLayer {
91
c.set_source_rgb(0.0, 0.0, 0.0);
92
c.paint().unwrap();
93
c.select_font_face("sans-serif", FontSlant::Normal, FontWeight::Normal);
94
- c.set_font_size(24.0);
+ c.set_font_size(32.0);
95
for (i, button) in self.buttons.iter().enumerate() {
96
let left_edge = i as f64 * (button_width + spacing_width) + spacing_width;
97
let color = if active_buttons[i] { BUTTON_COLOR_ACTIVE } else { BUTTON_COLOR_INACTIVE };
0 commit comments