1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00

window: x11: assume default theme if no cursor theme specified

refs: #1007
This commit is contained in:
Wez Furlong 2021-08-11 08:22:53 -07:00
parent 40cb141ad7
commit 8d93222000

View File

@ -252,7 +252,7 @@ impl CursorInfo {
}
}
let theme = self.theme.as_ref()?;
let theme = self.theme.as_ref().map(|s| s.as_str()).unwrap_or("default");
if self.pict_format_id.is_none() {
return None;
}