trim spaces on setTitle

This commit is contained in:
yggverse 2024-07-05 01:37:53 +03:00
parent f143640928
commit 08f09e4a5c

View file

@ -37,7 +37,9 @@ class Header
$this->gtk->set_title(
is_null($title) ? $this->_title : sprintf(
'%s - %s',
$title,
trim(
$title
),
$this->_title
)
);