connect activate method

This commit is contained in:
yggverse 2024-07-08 20:11:50 +03:00
parent 2e2a7fe5a7
commit 9445cf4b74

View file

@ -27,5 +27,14 @@ class Open
// Render
$this->gtk->show();
// Init events
$this->gtk->connect(
'activate',
function()
{
// @TODO
}
);
}
}