Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: [qta-browser] display selected icon name, Ctrl+F to search icons and tab stops in order of widget appearance #182

Merged
merged 3 commits into from
Oct 28, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add Ctrl+F shortcut key to search icons
  • Loading branch information
kumattau committed Oct 28, 2021
commit deb51cffdde22f424ae4f5a290067a638f9d4c95
5 changes: 5 additions & 0 deletions qtawesome/icon_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ def __init__(self):
self,
self._copyIconText,
)
QtWidgets.QShortcut(
QtGui.QKeySequence(QtCore.Qt.CTRL + QtCore.Qt.Key_F),
self,
self._lineEdit.setFocus,
)

self._lineEdit.setFocus()

Expand Down