Skip to content

Commit 1160736

Browse files
committed
Remove Plot tool
1 parent 81bc635 commit 1160736

File tree

3 files changed

+0
-28
lines changed

3 files changed

+0
-28
lines changed

src/ert/gui/simulation/run_dialog.py

-7
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
SnapshotModel,
5454
)
5555
from ert.gui.tools.file import FileDialog
56-
from ert.gui.tools.plot.plot_tool import PlotTool
5756
from ert.run_models import (
5857
BaseRunModel,
5958
RunModelStatusEvent,
@@ -226,11 +225,6 @@ def __init__(
226225
self.running_time = QLabel("")
227226
self.memory_usage = QLabel("")
228227

229-
self.plot_tool = PlotTool(config_file, self.parent()) # type: ignore
230-
self.plot_button = QPushButton(self.plot_tool.getName())
231-
self.plot_button.clicked.connect(self.plot_tool.trigger)
232-
self.plot_button.setEnabled(True)
233-
234228
self.kill_button = QPushButton("Terminate experiment")
235229
self.done_button = QPushButton("Done")
236230
self.done_button.setHidden(True)
@@ -259,7 +253,6 @@ def __init__(
259253
button_layout.addWidget(self.memory_usage)
260254
button_layout.addStretch()
261255
button_layout.addWidget(self.copy_debug_info_button)
262-
button_layout.addWidget(self.plot_button)
263256
button_layout.addWidget(self.kill_button)
264257
button_layout.addWidget(self.done_button)
265258
button_layout.addWidget(self.restart_button)

src/ert/gui/tools/plot/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
from .color_chooser import ColorBox
22
from .filter_popup import FilterPopup
33
from .filterable_kw_list_model import FilterableKwListModel
4-
from .plot_tool import PlotTool
54
from .style_chooser import StyleChooser
65

76
__all__ = [
87
"ColorBox",
98
"FilterPopup",
109
"FilterableKwListModel",
11-
"PlotTool",
1210
"StyleChooser",
1311
]

src/ert/gui/tools/plot/plot_tool.py

-19
This file was deleted.

0 commit comments

Comments
 (0)