From d4bfcaef0829e13a617139b1b8eeee724d37a871 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 8 Jul 2024 00:45:37 +0300 Subject: [PATCH] lowercase subtitle value --- src/Entity/Browser/Container/Tab/Page/Title.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Entity/Browser/Container/Tab/Page/Title.php b/src/Entity/Browser/Container/Tab/Page/Title.php index 650294dd..2ea6eac5 100644 --- a/src/Entity/Browser/Container/Tab/Page/Title.php +++ b/src/Entity/Browser/Container/Tab/Page/Title.php @@ -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 + ) ) ); }