If selectable field is disabled in forms.py, has_changed() method returns True and form's method has_changed() returns True even if nothing changed.
I propose adding 4 lines (31-34), copied from Django's class Field, method has_changed() (https://github.com/django/django/blob/master/django/forms/fields.py, lines 175-178). This fixes unwanted behavior.
If selectable field is disabled in forms.py, has_changed() method returns True and form's method has_changed() returns True even if nothing changed. I propose adding 4 lines (31-34), copied from Django's class Field, method has_changed() (https://github.com/django/django/blob/master/django/forms/fields.py, lines 175-178). This fixes unwanted behavior.