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
6 changes: 3 additions & 3 deletions picard/ui/widgets/configurablecolumnsheader.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _open_manager():
dlg = CustomColumnsManagerDialog(parent=self)
dlg.exec()

manage_action = QtGui.QAction(_("Manage Custom Columns…"), menu)
manage_action = QtGui.QAction(_("Manage custom columns…"), menu)
manage_action.setEnabled(not self.is_locked and CustomColumnsManagerDialog is not None)
manage_action.triggered.connect(_open_manager)
menu.addAction(manage_action)
Expand Down Expand Up @@ -247,9 +247,9 @@ def contextMenuEvent(self, event):
column_checkboxes = self._add_column_actions(menu)
menu.addSeparator()
restore_action = self._add_restore_action(menu)
lock_checkbox = self._add_lock_action(menu)
menu.addSeparator()
manage_action = self._add_manage_action(menu)
menu.addSeparator()
lock_checkbox = self._add_lock_action(menu)

# Wire lock toggle to update dependent UI elements
lock_toggle_callback = self._create_lock_toggle_callback(column_checkboxes, restore_action, manage_action)
Expand Down
Loading