-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Several improvements to tags editing #7708
Conversation
355cad4
to
9af0ab3
Compare
Fixed the gui test |
} else if (event == QKeySequence::Paste) { | ||
auto clipboard = QApplication::clipboard(); | ||
if (clipboard) { | ||
for (auto tagtext : clipboard->text().split(",")) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this use the same regex as when editing manually, the one on Entry.cpp
line 195?
Also, what happens when you paste a tag that was already added (or enter a duplicate tag manually, for that matter)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tags don't duplicate so non issue. I am just trying to get this out the door right now. This needs far more work to synch the various pieces. Not doing that right now. (aka this is good enough for now)
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #7708 +/- ##
===========================================
- Coverage 64.27% 64.24% -0.03%
===========================================
Files 340 340
Lines 43470 43482 +12
===========================================
- Hits 27936 27932 -4
- Misses 15534 15550 +16 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
Testing strategy
Tested on windows.
Type of change