? .DS_Store
? 601952.patch
? head.db
? tf3-node-title.patch
? modules/.DS_Store
? sites/default/files
? sites/default/private
? sites/default/settings.php
Index: modules/field_ui/field_ui-field-overview-form.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/field_ui/field_ui-field-overview-form.tpl.php,v
retrieving revision 1.1
diff -u -p -r1.1 field_ui-field-overview-form.tpl.php
--- modules/field_ui/field_ui-field-overview-form.tpl.php	19 Aug 2009 13:31:13 -0000	1.1
+++ modules/field_ui/field_ui-field-overview-form.tpl.php	12 Oct 2009 08:21:25 -0000
@@ -27,7 +27,7 @@
       <th><?php print t('Name'); ?></th>
       <th><?php print t('Field'); ?></th>
       <th><?php print t('Widget'); ?></th>
-      <th colspan="2"><?php print t('Operations'); ?></th>
+      <th colspan="2" class="operations"><?php print t('Operations'); ?></th>
     </tr>
   </thead>
   <tbody>
@@ -81,7 +81,8 @@
             </div>
           </td>
           <td><div class="new">&nbsp;</div><?php print $row->weight . $row->hidden_name; ?></td>
-          <td colspan="3"><div class="new">&nbsp;</div><?php print $row->field_name; ?></td>
+          <td colspan="2">&nbsp;</td>
+          <td><div class="new">&nbsp;</div><?php print $row->field_name; ?></td>
           <td colspan="2"><div class="new">&nbsp;</div><?php print $row->widget_type; ?></td>
           <?php break;
       endswitch; ?>
Index: modules/field_ui/field_ui.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/field_ui/field_ui.css,v
retrieving revision 1.1
diff -u -p -r1.1 field_ui.css
--- modules/field_ui/field_ui.css	19 Aug 2009 13:31:13 -0000	1.1
+++ modules/field_ui/field_ui.css	12 Oct 2009 08:21:25 -0000
@@ -15,4 +15,7 @@
   font-weight: bold;
   padding-bottom: .5em;
 }
+#field-overview th.operations {
+  min-width: 250px;
+}
 
Index: modules/field_ui/field_ui.js
===================================================================
RCS file: /cvs/drupal/drupal/modules/field_ui/field_ui.js,v
retrieving revision 1.1
diff -u -p -r1.1 field_ui.js
--- modules/field_ui/field_ui.js	19 Aug 2009 13:31:13 -0000	1.1
+++ modules/field_ui/field_ui.js	12 Oct 2009 08:21:25 -0000
@@ -24,7 +24,12 @@ function attachUpdateSelects(context) {
     $(this).bind('mouseup keyup', function () {
       var selectedFieldType = this.options[this.selectedIndex].value;
       var options = (selectedFieldType in widgetTypes ? widgetTypes[selectedFieldType] : []);
-      this.targetSelect.fieldPopulateOptions(options);
+      if (this.targetSelect.fieldPopulateOptions(options).find('option').size() > 1) {
+        this.targetSelect.parents('.form-item').show().end();
+      }
+      else {
+        this.targetSelect.parents('.form-item').hide().end();
+      }
     });
 
     // Trigger change on initial pageload to get the right widget options
@@ -48,6 +53,13 @@ function attachUpdateSelects(context) {
       if (updateText) {
         $(this.targetTextfield).attr('value', (selectedField in fields ? fields[selectedField].label : ''));
       }
+      if (this.targetSelect.fieldPopulateOptions(options).find('option').size() > 1) {
+        this.targetSelect.parents('.form-item').show().end();
+      }
+      else {
+        this.targetSelect.parents('.form-item').hide().end();
+      }
+
     });
 
     // Trigger change on initial pageload to get the right widget options
