fixed bool field
wreis [Tue, 3 Mar 2009 14:34:43 +0000 (14:34 +0000)]
lib/Reaction/UI/ViewPort/Field/Mutable/Boolean.pm

index e725615..1b25023 100644 (file)
@@ -15,6 +15,12 @@ sub BUILD {
   $self->value(0) unless $self->_model_has_value;
 };
 
+# yeah, bool fields have to always be required
+# otherwise we ever cant get false
+# for reference, take a peek in Field::Role::Mutable::Simple's
+# is_modified logic
+sub value_is_required { 1 }
+
 __PACKAGE__->meta->make_immutable;