From: Andy Spencer Date: Wed, 3 Feb 2010 05:42:30 +0000 (+0000) Subject: Left align plugins checkbox in prefs dialog X-Git-Tag: v0.4~47 X-Git-Url: http://pileus.org/git/?p=aweather;a=commitdiff_plain;h=73004ac29596fbbffb24ae14a0ae3f677d847ca3 Left align plugins checkbox in prefs dialog --- diff --git a/src/aweather-gui.c b/src/aweather-gui.c index 4610a8e..155b70f 100644 --- a/src/aweather-gui.c +++ b/src/aweather-gui.c @@ -237,6 +237,7 @@ static void prefs_setup(AWeatherGui *self) "Plugin", rend1, "text", 0, NULL); GtkTreeViewColumn *col2 = gtk_tree_view_column_new_with_attributes( "Enabled", rend2, "active", 1, NULL); + g_object_set(rend2, "xalign", 0, NULL); gtk_tree_view_append_column(tview, col1); gtk_tree_view_append_column(tview, col2); g_signal_connect(rend2, "toggled", G_CALLBACK(on_plugin_toggled), self);