Changeset 7709 for main/waeup.sirp


Ignore:
Timestamp:
27 Feb 2012, 11:53:51 (13 years ago)
Author:
Henrik Bettermann
Message:

When checking conversion we have to omit dictionary fields since there are no dict widgets availiable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/utils/converters.py

    r7597 r7709  
    121121    def __init__(self, iface):
    122122        self.iface = iface
    123         self.default_form_fields = form.Fields(iface)
     123        # Omit known dictionaries since there is no widget available
     124        # for dictionary schema fields
     125        self.default_form_fields = form.Fields(iface).omit('description_dict')
    124126        return
    125127
Note: See TracChangeset for help on using the changeset viewer.