We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a9587 commit e2da261Copy full SHA for e2da261
tagstudio/src/qt/ts_qt.py
@@ -1768,10 +1768,10 @@ def update_recent_lib_menu(self):
1768
settings.endGroup()
1769
1770
# Create actions for each library
1771
- for library_key in libs_sorted:
+ for index, library_key in enumerate(libs_sorted):
1772
path = Path(library_key[1][0])
1773
action = QAction(self.open_recent_library_menu)
1774
- action.setText(str(path))
+ action.setText(f"&{index + 1}: {str(path)}")
1775
action.triggered.connect(lambda checked=False, p=path: self.open_library(p))
1776
actions.append(action)
1777
0 commit comments