WIP: automatically calling ungrab_mouse on deactivation of plugin

This commit is contained in:
Matthias Koefferlein 2025-09-02 20:28:55 +02:00
parent 2b04ecb1f7
commit a24e2431a2
1 changed files with 3 additions and 0 deletions

View File

@ -331,6 +331,9 @@ void
EditorServiceBase::deactivated ()
{
clear_mouse_cursors ();
if (ui ()) {
ui ()->ungrab_mouse (this);
}
m_active = false;
}