diff options
author | monsta <[email protected]> | 2016-12-25 18:44:05 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-12-25 18:44:05 +0300 |
commit | e5bfdf1200f20a2f82e494168b55fa78ac4448aa (patch) | |
tree | 0bbc5d26af5e9bb5cde72acbf64f155aa2956426 | |
parent | 1c4f44ccb3e3edab847c17ef958e7fbe13e2fe90 (diff) | |
download | pluma-e5bfdf1200f20a2f82e494168b55fa78ac4448aa.tar.bz2 pluma-e5bfdf1200f20a2f82e494168b55fa78ac4448aa.tar.xz |
panel: use the correct property name for panel orientation
taken from:
https://git.gnome.org/browse/gedit/commit/?id=8033c19d2c89e1364861c42879d1aa300963aed7
-rw-r--r-- | pluma/pluma-panel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pluma/pluma-panel.c b/pluma/pluma-panel.c index d163a92d..505d6c33 100644 --- a/pluma/pluma-panel.c +++ b/pluma/pluma-panel.c @@ -585,7 +585,7 @@ pluma_panel_constructor (GType type, GtkWidget * pluma_panel_new (GtkOrientation orientation) { - return GTK_WIDGET (g_object_new (PLUMA_TYPE_PANEL, "orientation", orientation, NULL)); + return GTK_WIDGET (g_object_new (PLUMA_TYPE_PANEL, "panel-orientation", orientation, NULL)); } static GtkWidget * |