Etesam
Etesam
I don't know what you mean by that. It would be nice if you could post an image of what you are referring to.
Are you using windows?
I'm going to need some more information. Maybe an image or video. This is what it looks like for me: 
Can you take a screenshot of your window?
I am having the same issue
A small change that I had to make to fix an error when running `wails3 dev` ``` diff --git a/v3/pkg/application/menuitem_darwin.go b/v3/pkg/application/menuitem_darwin.go index 74ee9c4b..8b1217e1 100644 --- a/v3/pkg/application/menuitem_darwin.go +++ b/v3/pkg/application/menuitem_darwin.go @@ -419,7...
This pr does give you the ability to get the default menu, but I am not sure how you would update it besides adding. If I wanted to remove Toggle...
This doesn't seem to work on the defaultMenu. 👇 is not working for me ```go menu := application.DefaultApplicationMenu() menuItem := menu.FindByLabel("Toggle Fullscreen") if menuItem != nil { menu.RemoveMenuItem(menuItem) } app.SetMenu(menu)...
Still does not work ```go menu := application.DefaultApplicationMenu() menuItem := menu.FindByLabel("Toggle Fullscreen") if menuItem != nil { menu.RemoveMenuItem(menuItem) } menu.Update() app.SetMenu(menu) ```
This works for me now, thanks I had to do this: ```go menu := application.DefaultApplicationMenu() menuItem := menu.FindByLabel("Toggle Full Screen") if menuItem != nil { menu.RemoveMenuItem(menuItem) } app.SetMenu(menu) menu.Update() ```