This commit is contained in:
ebraminio 2021-01-02 10:21:40 -05:00 committed by GitHub
commit 469e50fa55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -242,6 +242,9 @@ uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar)
gtk_window_set_title(w->window, title);
gtk_window_resize(w->window, width, height);
// it will put the created window on top-right instead bottom-right
gtk_window_set_type_hint(w->window, GDK_WINDOW_TYPE_HINT_MENU);
w->vboxWidget = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
w->vboxContainer = GTK_CONTAINER(w->vboxWidget);
w->vbox = GTK_BOX(w->vboxWidget);