mirror of
https://gitlab.gnome.org/GNOME/gitg
synced 2024-10-31 03:48:10 +00:00
Forgot to end g_object_set with NULL
This commit is contained in:
parent
84297e6fed
commit
5be46f7304
1 changed files with 2 additions and 1 deletions
|
@ -639,7 +639,8 @@ on_main_layout_vertical_cb (GitgWindow *window)
|
|||
g_object_get (preferences, "main-layout-vertical", &vertical, NULL);
|
||||
g_object_set (window->priv->vpaned_main,
|
||||
"orientation",
|
||||
vertical ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL);
|
||||
vertical ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL,
|
||||
NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue