Small issue fixed: when images are selected and images are turned off, the selection persisted

This commit is contained in:
Matthias Koefferlein 2026-07-11 22:51:58 +02:00
parent 1cd9cbc8ba
commit 8fa97d7fcc
1 changed files with 3 additions and 0 deletions

View File

@ -465,6 +465,9 @@ void
Service::show_images (bool f)
{
if (m_images_visible != f) {
if (! f) {
clear_selection ();
}
m_images_visible = f;
view ()->redraw_deco_layer ();
}