remove grab_focus from initiation case

This commit is contained in:
yggverse 2024-07-20 17:56:23 +03:00
parent ff3fb354b4
commit fe5f59ad4a

View file

@ -12,7 +12,6 @@ abstract class Entry
protected string $_placeholder = '';
protected string $_value = '';
protected bool $_visible = true;
protected bool $_focus = false;
public function __construct()
{
@ -34,11 +33,6 @@ abstract class Entry
$this->_visible
);
if ($this->_focus)
{
$this->gtk->grab_focus();
}
// Render
$this->gtk->show();