From fb30848830ffb39a2c4d73b926f71e13b01ab84f Mon Sep 17 00:00:00 2001 From: Robert Tomek Date: Wed, 14 Jan 2026 15:36:11 -0600 Subject: [PATCH] Add a tooltip to the new 'date column' setting in the GUI when opening a file. --- src/midrc_react/gui/pyside6/file_open_dialogs.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/midrc_react/gui/pyside6/file_open_dialogs.py b/src/midrc_react/gui/pyside6/file_open_dialogs.py index 6045415..0102f42 100644 --- a/src/midrc_react/gui/pyside6/file_open_dialogs.py +++ b/src/midrc_react/gui/pyside6/file_open_dialogs.py @@ -166,6 +166,10 @@ def __init__(self, parent: Optional[QWidget], file_name: str, form_layout.addRow("Name (Plot Titles):", self.name_line_edit) form_layout.addRow("Description (Drop-Down Menu):", self.description_line_edit) form_layout.addRow("Date Column:", self.date_column_line_edit) + # add tooltip for date column + self.date_column_line_edit.setToolTip("Specify the column name to use for dates.\n" + "If the specified column is not found, the first column will be used by default.\n" + "This will internally rename the column to 'date' for processing.") top_layout.addLayout(form_layout) # Step 2: Plugin dropdown and Process Plugin button