diff --git a/src/Entity/Window/Tab/History/Navbar/Filter.php b/src/Entity/Window/Tab/History/Navbar/Filter.php index 5fb55c2f..d453176b 100644 --- a/src/Entity/Window/Tab/History/Navbar/Filter.php +++ b/src/Entity/Window/Tab/History/Navbar/Filter.php @@ -26,4 +26,17 @@ class Filter extends \Yggverse\Yoda\Abstract\Entity\Window\Tab\History\Navbar\En $this->navbar->filter->gtk->get_text() ); } + + public function setValue( + ?string $value = null + ): void + { + $this->gtk->set_text( + trim( + strval( + $value + ) + ) + ); + } } \ No newline at end of file