mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 13:04:13 +00:00
add tooltip
This commit is contained in:
parent
e089acca6c
commit
c9306bb4cd
@ -12,6 +12,13 @@ namespace app::browser::header
|
|||||||
// Init GTK
|
// Init GTK
|
||||||
this->gtk = gtk_menu_button_new();
|
this->gtk = gtk_menu_button_new();
|
||||||
|
|
||||||
|
gtk_widget_set_tooltip_text(
|
||||||
|
GTK_WIDGET(
|
||||||
|
this->gtk
|
||||||
|
),
|
||||||
|
Menu::TOOLTIP
|
||||||
|
);
|
||||||
|
|
||||||
// Init requirements
|
// Init requirements
|
||||||
this->main = new menu::Main(
|
this->main = new menu::Main(
|
||||||
this
|
this
|
||||||
|
@ -31,6 +31,9 @@ namespace app::browser
|
|||||||
// Requirements
|
// Requirements
|
||||||
menu::Main *main;
|
menu::Main *main;
|
||||||
|
|
||||||
|
// Defaults
|
||||||
|
const gchar *TOOLTIP = "Menu";
|
||||||
|
|
||||||
// Constructor
|
// Constructor
|
||||||
Menu(
|
Menu(
|
||||||
Header *header
|
Header *header
|
||||||
|
Loading…
x
Reference in New Issue
Block a user