Increase font size in CSDs on Wayland

Winit changed the default font size for CSDs from 17pt to 11pt, this
patch reverts that since it is too small to be readable.
This commit is contained in:
Kirill Chibisov 2020-11-22 04:20:04 +03:00 committed by Christian Duerr
parent 2d781b5e38
commit d9fa8b1f7f
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,10 @@ impl WaylandTheme for AlacrittyWaylandTheme {
(_, Button::Close) => self.hovered_close_icon,
}
}
fn font(&self) -> Option<(String, f32)> {
Some((String::from("sans-serif"), 17.))
}
}
trait IntoARGBColor {