Merge pull request #2703 from nical/last_resort_font

Add Fira Sans and DejaVu Sans to the last-resort font families.
This commit is contained in:
Simon Sapin 2014-06-24 16:15:11 +01:00
commit 239e72b0ce

View file

@ -132,7 +132,11 @@ impl FontListHandle {
}
pub fn get_last_resort_font_families() -> Vec<String> {
vec!("Arial".to_string())
vec!(
"Fira Sans".to_string(),
"DejaVu Sans".to_string(),
"Arial".to_string()
)
}
}