mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05: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
768f9e2285
commit
da6f0a505e
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…
Reference in a new issue