From 0ddcac1bf4cb17abbc4dbbba2541fc557042c958 Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Mon, 3 May 2010 07:46:15 +0000 Subject: [PATCH] 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. --- src/plugins/radar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.43.2