Skip to content

Commit

Permalink
Remove Plot tool
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Sep 27, 2024
1 parent b716614 commit f016e3a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 28 deletions.
7 changes: 0 additions & 7 deletions src/ert/gui/simulation/run_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
SnapshotModel,
)
from ert.gui.tools.file import FileDialog
from ert.gui.tools.plot.plot_tool import PlotTool
from ert.run_models import (
BaseRunModel,
RunModelStatusEvent,
Expand Down Expand Up @@ -225,11 +224,6 @@ def __init__(
self.running_time = QLabel("")
self.memory_usage = QLabel("")

self.plot_tool = PlotTool(config_file, self.parent()) # type: ignore
self.plot_button = QPushButton(self.plot_tool.getName())
self.plot_button.clicked.connect(self.plot_tool.trigger)
self.plot_button.setEnabled(True)

self.kill_button = QPushButton("Terminate experiment")
self.done_button = QPushButton("Done")
self.done_button.setHidden(True)
Expand Down Expand Up @@ -258,7 +252,6 @@ def __init__(
button_layout.addWidget(self.memory_usage)
button_layout.addStretch()
button_layout.addWidget(self.copy_debug_info_button)
button_layout.addWidget(self.plot_button)
button_layout.addWidget(self.kill_button)
button_layout.addWidget(self.done_button)
button_layout.addWidget(self.restart_button)
Expand Down
2 changes: 0 additions & 2 deletions src/ert/gui/tools/plot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
from .color_chooser import ColorBox
from .filter_popup import FilterPopup
from .filterable_kw_list_model import FilterableKwListModel
from .plot_tool import PlotTool
from .style_chooser import StyleChooser

__all__ = [
"ColorBox",
"FilterPopup",
"FilterableKwListModel",
"PlotTool",
"StyleChooser",
]
19 changes: 0 additions & 19 deletions src/ert/gui/tools/plot/plot_tool.py

This file was deleted.

0 comments on commit f016e3a

Please sign in to comment.