1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 23:01:04 +02:00

fix: not properly redrawing on style reload

Fixes #456
This commit is contained in:
Jake Stanger 2024-11-05 13:06:23 +00:00
parent 66ff849c56
commit 80403e3ca9
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
3 changed files with 9 additions and 5 deletions

View file

@ -143,7 +143,7 @@ impl Ipc {
}
Command::LoadCss { path } => {
if path.exists() {
load_css(path);
load_css(path, application.clone());
Response::Ok
} else {
Response::error("File not found")