diff --git a/src/Abstract/Entity/Button.php b/src/Abstract/Entity/Button.php index 834e489..d44b6e2 100644 --- a/src/Abstract/Entity/Button.php +++ b/src/Abstract/Entity/Button.php @@ -10,7 +10,8 @@ abstract class Button public const SENSITIVE = false; public const IMAGE = null; - public const LABEL = 'Button'; + public const LABEL = ''; + public const TOOLTIP = ''; public function __construct() { @@ -33,6 +34,10 @@ abstract class Button ); } + $this->gtk->set_sensitive( + _($this::TOOLTIP) + ); + $this->gtk->set_sensitive( $this::SENSITIVE );