Skip to content

Commit a3d0df4

Browse files
committed
Show cell outline in orientation even without evaluation
1 parent 4b34cf9 commit a3d0df4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

saenopy/gui/orientation/modules/TabCellOutline.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class TabCellOutline(TabModule):
2424

2525
def __init__(self, parent: "BatchEvaluate"):
2626
super().__init__(parent)
27-
27+
# self.update_display()
2828
with self.parent.tabs.createTab("Segmentation Deformations") as self.tab:
2929
with QtShortCuts.QVBoxLayout() as layout:
3030
#self.label_tab = QtWidgets.QLabel(
@@ -58,8 +58,8 @@ def setResult(self, result: ResultOrientation):
5858
self.update_display()
5959

6060
def update_display(self, *, plotter=None):
61-
if self.result is None:
62-
return
61+
# if self.result is None:
62+
# return
6363
#if self.current_tab_selected is False:
6464
# return
6565

@@ -85,5 +85,4 @@ def update_display(self, *, plotter=None):
8585
path = QtGui.QPainterPath()
8686
self.contour.setPath(path)
8787
self.center.setVisible(False)
88-
8988
return None

0 commit comments

Comments
 (0)