Commit 1160736 1 parent 81bc635 commit 1160736 Copy full SHA for 1160736
File tree 3 files changed +0
-28
lines changed
3 files changed +0
-28
lines changed Original file line number Diff line number Diff line change 53
53
SnapshotModel ,
54
54
)
55
55
from ert .gui .tools .file import FileDialog
56
- from ert .gui .tools .plot .plot_tool import PlotTool
57
56
from ert .run_models import (
58
57
BaseRunModel ,
59
58
RunModelStatusEvent ,
@@ -226,11 +225,6 @@ def __init__(
226
225
self .running_time = QLabel ("" )
227
226
self .memory_usage = QLabel ("" )
228
227
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
-
234
228
self .kill_button = QPushButton ("Terminate experiment" )
235
229
self .done_button = QPushButton ("Done" )
236
230
self .done_button .setHidden (True )
@@ -259,7 +253,6 @@ def __init__(
259
253
button_layout .addWidget (self .memory_usage )
260
254
button_layout .addStretch ()
261
255
button_layout .addWidget (self .copy_debug_info_button )
262
- button_layout .addWidget (self .plot_button )
263
256
button_layout .addWidget (self .kill_button )
264
257
button_layout .addWidget (self .done_button )
265
258
button_layout .addWidget (self .restart_button )
Original file line number Diff line number Diff line change 1
1
from .color_chooser import ColorBox
2
2
from .filter_popup import FilterPopup
3
3
from .filterable_kw_list_model import FilterableKwListModel
4
- from .plot_tool import PlotTool
5
4
from .style_chooser import StyleChooser
6
5
7
6
__all__ = [
8
7
"ColorBox" ,
9
8
"FilterPopup" ,
10
9
"FilterableKwListModel" ,
11
- "PlotTool" ,
12
10
"StyleChooser" ,
13
11
]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments