diff --git a/traitsui/editors/array_editor.py b/traitsui/editors/array_editor.py index cecc680b8..e99002149 100644 --- a/traitsui/editors/array_editor.py +++ b/traitsui/editors/array_editor.py @@ -72,6 +72,9 @@ def __init__(self, editor): if object.dtype.kind == "i": trait = Int() + if object.dtype.kind == "b": + trait = Bool() + if len(object.shape) == 1: self.view = self._one_dim_view(object, style, width, trait) elif len(object.shape) == 2: