mirror of
https://github.com/alacritty/alacritty.git
synced 2025-04-14 17:53:03 -04:00
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:
parent
2d781b5e38
commit
d9fa8b1f7f
1 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue