aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/itip-formatter/itip-formatter.c
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/itip-formatter/itip-formatter.c
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/itip-formatter/itip-formatter.c')
-rw-r--r--plugins/itip-formatter/itip-formatter.c6
1 files changed, 6 insertions, 0 deletions
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)