move statusbar feature to gtk header subtitle

This commit is contained in:
yggverse 2024-07-07 08:05:04 +03:00
parent a516aa958f
commit cf3fde37fa
7 changed files with 104 additions and 143 deletions

View file

@ -53,7 +53,8 @@ class Header
}
public function setTitle(
?string $value = null
?string $value = null,
?string $subtitle = null
): void
{
$this->gtk->set_title(
@ -65,6 +66,10 @@ class Header
$this->_title
)
);
$this->setSubtitle(
$subtitle
);
}
public function setSubtitle(