Browse Source

lowercase subtitle value

PHP-GTK3
yggverse 4 months ago
parent
commit
d4bfcaef08
  1. 6
      src/Entity/Browser/Container/Tab/Page/Title.php

6
src/Entity/Browser/Container/Tab/Page/Title.php

@ -60,8 +60,10 @@ class Title @@ -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
)
)
);
}

Loading…
Cancel
Save