From: Andy Spencer Date: Mon, 3 May 2010 07:46:15 +0000 (+0000) Subject: Move radar tab back to left X-Git-Tag: v0.4~17 X-Git-Url: http://pileus.org/git/?p=aweather;a=commitdiff_plain;h=0ddcac1bf4cb17abbc4dbbba2541fc557042c958 Move radar tab back to left This works in windows now, not sure why though. I think it has something to do with Gtk+ 2.20 vs. 2.16. Currently I'm compiling against 2.20 and running against 2.16 since 2.20 has runtime issues.. it works though. --- diff --git a/src/plugins/radar.c b/src/plugins/radar.c index 1bf2de2..2ca618e 100644 --- a/src/plugins/radar.c +++ b/src/plugins/radar.c @@ -660,7 +660,7 @@ static void gis_plugin_radar_init(GisPluginRadar *self) self->sites = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, (GDestroyNotify)radar_site_free); self->config = gtk_notebook_new(); - gtk_notebook_set_tab_pos(GTK_NOTEBOOK(self->config), GTK_POS_TOP); + gtk_notebook_set_tab_pos(GTK_NOTEBOOK(self->config), GTK_POS_LEFT); } static void gis_plugin_radar_dispose(GObject *gobject) {