This commit is contained in:
hodasemi 2025-03-08 07:33:45 +01:00
parent 1383cd5c4d
commit 68b564fa18

View file

@ -874,6 +874,9 @@ impl GuiHandler {
current.disable(world)?; current.disable(world)?;
} }
} }
(Some(current), None) => {
current.disable(world)?;
}
_ => (), _ => (),
} }
@ -894,6 +897,9 @@ impl GuiHandler {
current.disable(world)?; current.disable(world)?;
} }
} }
(Some(current), None) => {
current.disable(world)?;
}
_ => (), _ => (),
} }