lowercase subtitle value

This commit is contained in:
yggverse 2024-07-08 00:45:37 +03:00
parent e04da6cb19
commit d4bfcaef08

View File

@ -60,8 +60,10 @@ class Title
): void
{
$this->gtk->set_subtitle(
is_null($subtitle) ? $this->_subtitle : trim(
$subtitle
is_null($subtitle) ? $this->_subtitle : strtolower(
trim(
$subtitle
)
)
);
}