Skip to content

Commit

Permalink
Merge pull request #62 from funkelab/collapse_gap_graph
Browse files Browse the repository at this point in the history
Collapse gap plot by default
  • Loading branch information
cmalinmayor committed Sep 6, 2024
2 parents df6c983 + 13d7169 commit 3a9a03d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ install_requires =
magicgui
qtpy
scikit-image
motile >=0.2.1
motile < 0.3
motile_toolbox >=0.2.5
pydantic
tifffile[all]
Expand Down
2 changes: 1 addition & 1 deletion src/motile_plugin/widgets/run_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _progress_widget(self) -> QWidget:
collapsable_plot = QCollapsible("Graph of solver gap")
collapsable_plot.layout().setContentsMargins(0, 0, 0, 0)
collapsable_plot.addWidget(self.gap_plot)
collapsable_plot.expand(animate=False)
collapsable_plot.collapse(animate=False)

layout.addWidget(self.solver_label)
layout.addWidget(collapsable_plot)
Expand Down

0 comments on commit 3a9a03d

Please sign in to comment.