Add Fira Sans and DejaVu Sans to the last-resort font families.

This commit is contained in:
Nicolas Silva 2014-06-22 20:25:28 +02:00
parent 1e263f9dec
commit 0edc17a361

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()
)
}
}