Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/midrc_react/gui/pyside6/file_open_dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link

Copilot AI Jan 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment should start with a capital letter to be consistent with the project's commenting style. Other comments in this file typically start with capital letters and form complete sentences.

Suggested change
# add tooltip for date column
# Add tooltip for date column

Copilot uses AI. Check for mistakes.
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
Expand Down
Loading