Browse Source

add missed icons

PHP-GTK3
yggverse 4 months ago
parent
commit
bcab5c2522
  1. 2
      src/Entity/Browser/History/Container/Navbar/Delete.php
  2. 2
      src/Entity/Browser/History/Container/Navbar/Open.php
  3. 2
      src/Entity/Browser/History/Container/Navbar/Search.php

2
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 class Delete extends Button
{ {
public const IMAGE = 'window-close-symbolic'; public const IMAGE = 'edit-delete-symbolic';
public const LABEL = 'Delete'; public const LABEL = 'Delete';
public const TOOLTIP = 'Delete'; public const TOOLTIP = 'Delete';

2
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 class Open extends Button
{ {
public const IMAGE = null; // list-add-symbolic | tab-new-symbolic
public const LABEL = 'Open'; public const LABEL = 'Open';
public const TOOLTIP = 'Open';
protected function _onCLick( protected function _onCLick(
\GtkButton $entity \GtkButton $entity

2
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 class Search extends \Yggverse\Yoda\Abstract\Entity\Browser\History\Container\Navbar\Button
{ {
public const SENSITIVE = true; public const SENSITIVE = true;
public const IMAGE = 'edit-find-symbolic';
public const LABEL = 'Search'; public const LABEL = 'Search';
public const TOOLTIP = 'Search';
protected function _onCLick( protected function _onCLick(
\GtkButton $entity \GtkButton $entity

Loading…
Cancel
Save