Changeset 334

Show
Ignore:
Timestamp:
06/14/04 12:38:22 (4 years ago)
Author:
ed
Message:

Removed the code that was disabling the spinners for numeric fields in new
records when a new record was added. Perhaps there is a reason for disabling
the fields in some cases; we can add in tests for those cases and
conditionally disable the controls if necessary.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ui/uiwx/classes/dDataControlMixin.py

    r295 r334  
    7474            except (TypeError, dException.NoRecordsException): 
    7575                self.Value = self.getBlankValue() 
    76                 self.Enabled = False 
     76                # Do we need to disable the control? 
     77                #self.Enabled = False 
    7778            self._oldVal = self.Value 
    7879