update header bar menu namespace

This commit is contained in:
yggverse 2024-08-05 18:37:52 +03:00
parent 0d624d3db7
commit 7b8b3b860c
7 changed files with 71 additions and 77 deletions

View file

@ -0,0 +1,18 @@
#include "menu.h"
namespace app::browser::header::bar
{
// Construct
Menu::Menu(
Bar *bar
) {
// Init GTK
this->gtk = gtk_menu_button_new();
gtk_widget_show(
GTK_WIDGET(
this->gtk
)
);
}
}