Skip to content

Commit

Permalink
vimode: eliminate warning
Browse files Browse the repository at this point in the history
  • Loading branch information
techee committed Mar 5, 2024
1 parent 6227d2b commit cfbe000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vimode/src/backends/backend-viw.c
Expand Up @@ -221,7 +221,7 @@ int main(int argc, char **argv)
open_file(argv[1]);

statusbar = gtk_statusbar_new();
vbox = gtk_vbox_new(FALSE, 0);
vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
gtk_box_pack_start(GTK_BOX(vbox), editor, TRUE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(vbox), statusbar, FALSE, FALSE, 0);
gtk_container_add(GTK_CONTAINER(window), vbox);
Expand Down

0 comments on commit cfbe000

Please sign in to comment.