From bcab5c2522589e0e1c052f1bd2c58e54b87ce423 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 22 Jul 2024 15:23:22 +0300 Subject: [PATCH] add missed icons --- src/Entity/Browser/History/Container/Navbar/Delete.php | 2 +- src/Entity/Browser/History/Container/Navbar/Open.php | 2 ++ src/Entity/Browser/History/Container/Navbar/Search.php | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Entity/Browser/History/Container/Navbar/Delete.php b/src/Entity/Browser/History/Container/Navbar/Delete.php index 5401b289..367b3401 100644 --- a/src/Entity/Browser/History/Container/Navbar/Delete.php +++ b/src/Entity/Browser/History/Container/Navbar/Delete.php @@ -8,7 +8,7 @@ use \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Navbar\Button; class Delete extends Button { - public const IMAGE = 'window-close-symbolic'; + public const IMAGE = 'edit-delete-symbolic'; public const LABEL = 'Delete'; public const TOOLTIP = 'Delete'; diff --git a/src/Entity/Browser/History/Container/Navbar/Open.php b/src/Entity/Browser/History/Container/Navbar/Open.php index bdf1c19c..23fdb39b 100644 --- a/src/Entity/Browser/History/Container/Navbar/Open.php +++ b/src/Entity/Browser/History/Container/Navbar/Open.php @@ -8,7 +8,9 @@ use \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Navbar\Button; class Open extends Button { + public const IMAGE = null; // list-add-symbolic | tab-new-symbolic public const LABEL = 'Open'; + public const TOOLTIP = 'Open'; protected function _onCLick( \GtkButton $entity diff --git a/src/Entity/Browser/History/Container/Navbar/Search.php b/src/Entity/Browser/History/Container/Navbar/Search.php index 1283a641..4edf52d1 100644 --- a/src/Entity/Browser/History/Container/Navbar/Search.php +++ b/src/Entity/Browser/History/Container/Navbar/Search.php @@ -7,7 +7,9 @@ namespace Yggverse\Yoda\Entity\Browser\History\Container\Navbar; class Search extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Navbar\Button { public const SENSITIVE = true; + public const IMAGE = 'edit-find-symbolic'; public const LABEL = 'Search'; + public const TOOLTIP = 'Search'; protected function _onCLick( \GtkButton $entity