diff options
author | monsta <[email protected]> | 2015-05-25 10:42:06 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-05-25 10:42:06 +0300 |
commit | dab2d10edfb4a594f1b539a648825d06b0883364 (patch) | |
tree | fba930d2a8fb8b44be12d4ed72c1506af347f5c4 | |
parent | dc79566ef6fec158db442a0e6563ce8cdc0a5d4f (diff) | |
parent | c5c9cb571268ca96f718a8c68c41c9e5254b6d77 (diff) | |
download | mate-applets-dab2d10edfb4a594f1b539a648825d06b0883364.tar.bz2 mate-applets-dab2d10edfb4a594f1b539a648825d06b0883364.tar.xz |
Merge pull request #133 from NiceandGently/master
GTK3: fix panel orientation from weather applet
-rw-r--r-- | mateweather/mateweather-applet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mateweather/mateweather-applet.c b/mateweather/mateweather-applet.c index 4dc26a16..7a404025 100644 --- a/mateweather/mateweather-applet.c +++ b/mateweather/mateweather-applet.c @@ -42,8 +42,8 @@ #define MAX_CONSECUTIVE_FAULTS (3) #if GTK_CHECK_VERSION (3, 0, 0) -#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y) -#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) +#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y) +#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) #endif static void about_cb (GtkAction *action, |