Skip to content

Commit

Permalink
Merge pull request #3072 from thocevar/mosaic
Browse files Browse the repository at this point in the history
[FIX] OWMosaic: Don't offer String meta attributes
  • Loading branch information
lanzagar authored Jun 29, 2018
2 parents 43821e3 + c8d966e commit e1dafe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/visualize/owmosaic.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def init_combos(self, data):

icons = gui.attributeIconDict
for attr in chain(data.domain.variables, data.domain.metas):
if attr.is_primitive:
if attr.is_primitive():
for combo in self.attr_combos:
combo.addItem(icons[attr], attr.name)

Expand Down

0 comments on commit e1dafe3

Please sign in to comment.