aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/itip-formatter/ChangeLog7
-rw-r--r--plugins/itip-formatter/itip-formatter.c6
2 files changed, 13 insertions, 0 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog
index ff6f4fb826..fcc8fd9dde 100644
--- a/plugins/itip-formatter/ChangeLog
+++ b/plugins/itip-formatter/ChangeLog
@@ -1,3 +1,10 @@
+2005-08-09 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #307841
+ * itip-formatter.c: (view_response_cb): Check
+ if the transparency is set and if not set it as
+ Opaque.
+
2005-07-27 Vivek Jain <jvivek@novell.com>
* itip-formatter.c : (update_item)
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index 00c62bb325..b2bccca3b0 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -1329,6 +1329,12 @@ view_response_cb (GtkWidget *widget, ItipViewResponse response, gpointer data)
FormatItipPObject *pitip = data;
gboolean status = FALSE;
icalproperty *prop;
+ ECalComponentTransparency trans;
+
+ e_cal_component_get_transparency (pitip->comp, &trans);
+ /* FIXME we should be providing an option to accept as free or busy */
+ if (trans == E_CAL_COMPONENT_TRANSP_NONE)
+ e_cal_component_set_transparency (pitip->comp, E_CAL_COMPONENT_TRANSP_OPAQUE);
if (!pitip->my_address && pitip->current_ecal != NULL)