From da439c7f3b3dbea2e531a242ef2ff1765443dc7e Mon Sep 17 00:00:00 2001
From: Rodrigo Moya <rodrigo@ximian.com>
Date: Mon, 24 Nov 2003 10:51:18 +0000
Subject: disable editing items if the selected task list is read only, not if
 it's

2003-11-24  Rodrigo Moya <rodrigo@ximian.com>

	* gui/e-calendar-table.c (e_calendar_table_show_popup_menu): disable
	editing items if the selected task list is read only, not if it's not.

svn path=/trunk/; revision=23480
---
 calendar/gui/e-calendar-table.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'calendar/gui/e-calendar-table.c')

diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c
index 173887dab5..fc14a50800 100644
--- a/calendar/gui/e-calendar-table.c
+++ b/calendar/gui/e-calendar-table.c
@@ -1075,7 +1075,7 @@ e_calendar_table_show_popup_menu (ETable *table,
 		hide_mask = MASK_SINGLE;
 
 	e_cal_is_read_only (comp_data->client, &read_only, NULL);
-	if (!read_only)
+	if (read_only)
 		disable_mask |= MASK_EDITABLE;
 
 	if (e_cal_get_static_capability (comp_data->client, CAL_STATIC_CAPABILITY_NO_TASK_ASSIGNMENT))
-- 
cgit