From 2fb3feea9ffd1eebf9beec36f156c9fe89a76a30 Mon Sep 17 00:00:00 2001 From: Jonathan Karlsen Date: Thu, 31 Oct 2024 13:24:01 +0100 Subject: [PATCH] Change button text `Debug Info`->`Copy Debug Info` The button text was misleading, as it could be interpreted as "show debug info" instead of it copying the debug info to the clipboard. --- src/ert/gui/simulation/run_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ert/gui/simulation/run_dialog.py b/src/ert/gui/simulation/run_dialog.py index ee0a6801c2c..5ba9c6eeb14 100644 --- a/src/ert/gui/simulation/run_dialog.py +++ b/src/ert/gui/simulation/run_dialog.py @@ -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")