terminal: always call update_colors on set_config

This commit is contained in:
Jeremy Soller 2024-04-19 14:09:32 -06:00
parent 38d6ca4ac8
commit 7c5d5440e5
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -572,11 +572,14 @@ impl Terminal {
}
}
if changed {
self.update_colors(config);
update = true;
}
}
//TODO: this is done on every set_config because the changed boolean above does not capture
// WINDOW_BG changes
self.update_colors(config);
if update_cell_size {
self.update_cell_size();
} else if update {