diff --git a/ds.field_ui.inc b/ds.field_ui.inc
index f6ff65b..0575033 100644
--- a/ds.field_ui.inc
+++ b/ds.field_ui.inc
@@ -1510,8 +1510,7 @@ function _ds_field_ui_table_layouts_preview(&$form, &$form_state, $ds_layouts, $
 
   if (!empty($layout_string)) {
     $chosen_layout = $ds_layouts[$layout_string];
-
-    if (empty($chosen_layout['flexible'])) {
+    if (!isset($chosen_layout['panels'])) {
       $selected = '<strong>' . $chosen_layout['label'] . '</strong>';
       $selected .= '<br/>' . t('The default template can be found in %path', array('%path' => $chosen_layout['path']));
       $suggestions = t('Template suggestions') . ':<ul>';
@@ -1523,7 +1522,7 @@ function _ds_field_ui_table_layouts_preview(&$form, &$form_state, $ds_layouts, $
     }
     else {
       $suggestions = '';
-      $selected = t('You have selected the flexible %layout_label layout.', array('%layout_label' => $chosen_layout['label'], '%path' => $chosen_layout['path']));
+      $selected = t('You have selected following panel layout: %layout_label.', array('%layout_label' => $chosen_layout['label']));
     }
 
     if (isset($form_state['values']['additional_settings']['layout']) || (!empty($layout) && isset($layout->regions))) {
