draft configure-event

This commit is contained in:
yggverse 2024-07-10 13:09:35 +03:00
parent 9ae707f021
commit 783d8d067c

View file

@ -62,5 +62,16 @@ class Browser
// Render
$this->gtk->show();
// Init events
$this->gtk->connect(
'configure-event',
function(
\GtkWindow $window,
// \GdkEvent $event
) {
// @TODO render data wordwrap by $window->get_size()
}
);
}
}