Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 17 Mar 2024 16:54:45 UTC Commit: ee7aac3ded21b6c4a9d3b375502538e463351c35 https://github.com/geany/geany-plugins/commit/ee7aac3ded21b6c4a9d3b375502538...
Log Message: ----------- Merge pull request #1316 from techee/vimode-fixes
vimode: eliminate a warning
Modified Paths: -------------- vimode/src/backends/backend-viw.c
Modified: vimode/src/backends/backend-viw.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -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);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org