Index: ckeditor.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ckeditor/ckeditor.module,v
retrieving revision 1.4.2.13
diff -u -r1.4.2.13 ckeditor.module
--- ckeditor.module	17 Feb 2010 11:54:22 -0000	1.4.2.13
+++ ckeditor.module	22 Feb 2010 13:04:30 -0000
@@ -111,10 +111,19 @@
   if (user_access('access ckeditor')) {
     $type['textarea'] = array('#process' => array('ckeditor_process_textarea'));
     $type['form'] = array('#after_build' => array('ckeditor_process_form'));
+    $type['hidden'] = array('#process' => array('ckeditor_process_hidden'));
   }
   return $type;
 }
 
+function ckeditor_process_hidden($element, $edit, $form_state, $complete_form) {
+  if (!empty($element['#value']) && $element['#value'] == 'panels_edit_display_form') {
+    $fake_element = array('#id' => 'edit-body');
+    ckeditor_process_textarea($fake_element);
+  }
+  return $element;
+}
+
 function ckeditor_process_form(&$form) {
   global $_ckeditor_configuration, $_ckeditor_ids;
   static $processed_textareas = array();

