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
|
// Requirements
|
||||||
public Help\About $about;
|
public Help\About $about;
|
||||||
public Help\Debug $debug;
|
public Help\Debug $debug;
|
||||||
public Help\Gemlog $gemlog;
|
public Help\Homepage $homepage;
|
||||||
public Help\Issue $issue;
|
public Help\Issue $issue;
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
|
|
@ -49,13 +49,13 @@ class Help
|
||||||
$this->about->gtk
|
$this->about->gtk
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init gemlog menu item
|
// Init homepage menu item
|
||||||
$this->gemlog = new Help\Gemlog(
|
$this->homepage = new Help\Homepage(
|
||||||
$this
|
$this
|
||||||
);
|
);
|
||||||
|
|
||||||
$help->append(
|
$help->append(
|
||||||
$this->gemlog->gtk
|
$this->homepage->gtk
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init issue menu item
|
// Init issue menu item
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ use \GtkMenuItem;
|
||||||
|
|
||||||
use \Yggverse\Yoda\Entity\Browser\Menu\Help;
|
use \Yggverse\Yoda\Entity\Browser\Menu\Help;
|
||||||
|
|
||||||
class Gemlog
|
class Homepage
|
||||||
{
|
{
|
||||||
// GTK
|
// GTK
|
||||||
public GtkMenuItem $gtk;
|
public GtkMenuItem $gtk;
|
||||||
|
|
@ -18,7 +18,7 @@ class Gemlog
|
||||||
public Help $help;
|
public Help $help;
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
public const LABEL = 'Gemlog';
|
public const LABEL = 'Home page';
|
||||||
public const URL = 'gemini://yggverse.cities.yesterweb.org';
|
public const URL = 'gemini://yggverse.cities.yesterweb.org';
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
Loading…
Add table
Add a link
Reference in a new issue