mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
update menu item name
This commit is contained in:
parent
40158cafdc
commit
b5773a6832
2 changed files with 6 additions and 6 deletions
|
|
@ -20,7 +20,7 @@ class Help
|
|||
// Requirements
|
||||
public Help\About $about;
|
||||
public Help\Debug $debug;
|
||||
public Help\Gemlog $gemlog;
|
||||
public Help\Homepage $homepage;
|
||||
public Help\Issue $issue;
|
||||
|
||||
// Defaults
|
||||
|
|
@ -49,13 +49,13 @@ class Help
|
|||
$this->about->gtk
|
||||
);
|
||||
|
||||
// Init gemlog menu item
|
||||
$this->gemlog = new Help\Gemlog(
|
||||
// Init homepage menu item
|
||||
$this->homepage = new Help\Homepage(
|
||||
$this
|
||||
);
|
||||
|
||||
$help->append(
|
||||
$this->gemlog->gtk
|
||||
$this->homepage->gtk
|
||||
);
|
||||
|
||||
// Init issue menu item
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ use \GtkMenuItem;
|
|||
|
||||
use \Yggverse\Yoda\Entity\Browser\Menu\Help;
|
||||
|
||||
class Gemlog
|
||||
class Homepage
|
||||
{
|
||||
// GTK
|
||||
public GtkMenuItem $gtk;
|
||||
|
|
@ -18,7 +18,7 @@ class Gemlog
|
|||
public Help $help;
|
||||
|
||||
// Defaults
|
||||
public const LABEL = 'Gemlog';
|
||||
public const LABEL = 'Home page';
|
||||
public const URL = 'gemini://yggverse.cities.yesterweb.org';
|
||||
|
||||
public function __construct(
|
||||
Loading…
Add table
Add a link
Reference in a new issue