aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-08-09 04:34:22 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-08-09 04:34:22 +0800
commit264f8357d31c25314916743404aca074363ce67f (patch)
treef44f2abe9acfe222d0e59b85b24decba45a6aecb /plugins
parent91fc6988a266d0c94d392af4d0d7fb7e4c49ced3 (diff)
downloadgsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.tar
gsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.tar.gz
gsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.tar.bz2
gsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.tar.lz
gsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.tar.xz
gsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.tar.zst
gsoc2013-evolution-264f8357d31c25314916743404aca074363ce67f.zip
Fixes #307841
svn path=/trunk/; revision=30041
Diffstat (limited to 'plugins')
-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)