Skip to content

Commit

Permalink
Change button text Debug Info->Copy Debug Info
Browse files Browse the repository at this point in the history
The button text was misleading, as it could be interpreted as "show debug info" instead of it copying the debug info to the clipboard.
  • Loading branch information
jonathan-eq committed Oct 31, 2024
1 parent 186699a commit 2fb3fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/gui/simulation/run_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def __init__(
self.kill_button = QPushButton("Terminate experiment")
self.restart_button = QPushButton("Rerun failed")
self.restart_button.setHidden(True)
self.copy_debug_info_button = QPushButton("Debug Info")
self.copy_debug_info_button = QPushButton("Copy Debug Info")
self.copy_debug_info_button.setToolTip("Copies useful information to clipboard")
self.copy_debug_info_button.clicked.connect(self.produce_clipboard_debug_info)
self.copy_debug_info_button.setObjectName("copy_debug_info_button")
Expand Down

0 comments on commit 2fb3fee

Please sign in to comment.