Skip to content

Commit

Permalink
Merge pull request #1316 from techee/vimode-fixes
Browse files Browse the repository at this point in the history
vimode: eliminate a warning
  • Loading branch information
eht16 authored Mar 17, 2024
2 parents c8da14a + cfbe000 commit ee7aac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vimode/src/backends/backend-viw.c
Original file line number Diff line number Diff line change
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 ee7aac3

Please sign in to comment.