fix new page initiation

This commit is contained in:
yggverse 2024-07-12 17:40:03 +03:00
parent 11b13ba011
commit a288cb52a9

View file

@ -95,7 +95,9 @@ class Tab
bool $focus = true bool $focus = true
): void ): void
{ {
$page = new Page( // Extendable classes not supported by PHP-GTK3 #117
// create internal pages registry
$this->_page[] = $page = new Page(
$this->container $this->container
); );
@ -134,10 +136,6 @@ class Tab
// Render // Render
$this->gtk->show(); $this->gtk->show();
// Extendable classes not supported by PHP-GTK3 #117
// create internal pages registry
$this->_page[] = $page;
} }
public function getPage( public function getPage(