Skip to content

Commit d50c751

Browse files
committed
Limit trace ID in title to 8 digits
1 parent 9841f42 commit d50c751

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ert/gui/main_window.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ def __init__(
7979
self.config_file = config_file
8080
self.log_handler = log_handler
8181

82-
self.setWindowTitle(f"ERT - {config_file} - {find_ert_info()} - {getTraceID()}")
82+
self.setWindowTitle(
83+
f"ERT - {config_file} - {find_ert_info()} - {getTraceID()[:8]}"
84+
)
8385
self.plugin_manager = plugin_manager
8486
self.central_widget = QFrame(self)
8587
self.central_layout = QHBoxLayout(self.central_widget)

0 commit comments

Comments
 (0)