implement setValue method

This commit is contained in:
yggverse 2024-07-05 01:28:02 +03:00
parent cdaf7d85ed
commit 77edbf86e7

View file

@ -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
)
)
);
}
}