Skip to content

Commit

Permalink
Fix assertion warning
Browse files Browse the repository at this point in the history
Signed-off-by: Thibault Meyer <[email protected]>
  • Loading branch information
thibaultmeyer committed Jan 18, 2020
1 parent 81323f0 commit 6d3c387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/gui_main_initialize_main_header_bar.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void gui_main_initialize_main_header_bar(void) {
// More menu: About
GtkWidget *menu_item_about = gtk_menu_item_new_with_label("About");
gtk_container_add(GTK_CONTAINER(menu_more), menu_item_about);
gtk_menu_attach(GTK_MENU(menu_more), menu_item_about, 0, 1, 1, 1);
gtk_menu_attach(GTK_MENU(menu_more), menu_item_about, 0, 1, 1, 2);
g_signal_connect(menu_item_about, "activate", G_CALLBACK(gui_main_callback_menu_more_about), NULL);

// More menu (Refresh)
Expand Down

0 comments on commit 6d3c387

Please sign in to comment.