-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(ui): always reset tag search panel when opened * feat: return parent tags in tag search Known issue: this bypasses the tag_limit * refactor: use consistant `datetime` imports * refactor: sort by base tag name to improve performance * fix: escape `&` when displaying tag names * ui: show "create and add" tag with other results * fix: optimize and fix tag result sorting * feat(ui): allow tags in list to be selected and added by keyboard * ui: use `esc` to reset search focus and/or close modal * fix(ui): add pressed+focus styling to "create tag" button * ui: use `esc` key to close `PanelWidget` * ui: move disambiguation button to right side * ui: expand clickable area of "-" tag button, improve styling * ui: add "Ctrl+M" shortcut to open tag manager * fix(ui): show "add tags" window title when accessing from home
- Loading branch information
Showing
11 changed files
with
188 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright (C) 2025 Travis Abendshien (CyanVoxel). | ||
# Licensed under the GPL-3.0 License. | ||
# Created for TagStudio: https://github.com/CyanVoxel/TagStudio | ||
|
||
|
||
def escape_text(text: str): | ||
"""Escapes characters that are problematic in Qt widgets.""" | ||
return text.replace("&", "&&") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.