diff --git a/calendar/js/et2_widget_event.js b/calendar/js/et2_widget_event.js
index 2f197183db..0e94802598 100644
--- a/calendar/js/et2_widget_event.js
+++ b/calendar/js/et2_widget_event.js
@@ -620,10 +620,6 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
*/
}
- if(this.options.value.non_blocking)
- {
- icons.push('');
- }
if(this.options.value.alarm && !jQuery.isEmptyObject(this.options.value.alarm) && !this.options.value.is_private)
{
icons.push('');
@@ -633,6 +629,12 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
icons.push('');
}
}
+
+ // Always include non-blocking, regardless of privacy
+ if(this.options.value.non_blocking)
+ {
+ icons.push('');
+ }
return icons;
},