Redraw after activate

This commit is contained in:
Piyush मिश्रः 2022-02-04 02:04:08 +05:30
parent cb3c12f708
commit 50924e9354
1 changed files with 3 additions and 0 deletions

View File

@ -170,6 +170,7 @@ pub(crate) fn spawn_image_thread(
win.deactivate();
cont.save();
win.activate();
win.redraw();
status.set_label("");
}
}
@ -192,6 +193,7 @@ pub(crate) fn spawn_image_thread(
}
status.set_label("");
win.activate();
win.redraw();
}
}
DrawMessage::Delete => {
@ -209,6 +211,7 @@ pub(crate) fn spawn_image_thread(
}
status.set_label("");
win.activate();
win.redraw();
}
}
}