Adding mask to exposed in expert app
This commit is contained in:
parent
06368bcb46
commit
6d1085bd2b
1 changed files with 4 additions and 4 deletions
|
|
@ -128,10 +128,10 @@ class WidgetView:
|
|||
self.widget.children += (self._build_exposed(node),)
|
||||
|
||||
def _build_exposed(self, node):
|
||||
return collapsible(
|
||||
[self._build_activity(node.exposed.activity)],
|
||||
title="Exposed"
|
||||
)
|
||||
return collapsible([widgets.HBox([
|
||||
self._build_mask(node.exposed.mask),
|
||||
self._build_activity(node.exposed.activity),
|
||||
])], title="Exposed")
|
||||
|
||||
def _build_infected(self, node):
|
||||
return collapsible([widgets.HBox([
|
||||
|
|
|
|||
Loading…
Reference in a new issue