From fe5f59ad4a9aa1eff749824d7ac2bbb37d5d0b1c Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 20 Jul 2024 17:56:23 +0300 Subject: [PATCH] remove grab_focus from initiation case --- src/Abstract/Entity/Entry.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Abstract/Entity/Entry.php b/src/Abstract/Entity/Entry.php index 53633a3..b79be79 100644 --- a/src/Abstract/Entity/Entry.php +++ b/src/Abstract/Entity/Entry.php @@ -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();