lowercase subtitle value

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

View file

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