mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Several improvements to tags editing
* Fix #7602 - Allow spaces in tag names * Fix #7528 - Allow pasting text into the tags field. Text is split by comma creating tags for each section of text. If there are no commas then the pasted text becomes a tag. * Fix tags editing not causing the entry to be marked as modified.
This commit is contained in:
parent
ad61d71c6e
commit
02602da257
4 changed files with 26 additions and 9 deletions
|
@ -192,7 +192,7 @@ QString Entry::tags() const
|
|||
|
||||
QStringList Entry::tagList() const
|
||||
{
|
||||
static QRegExp rx("(\\ |\\,|\\t|\\;)");
|
||||
static QRegExp rx("(\\,|\\t|\\;)");
|
||||
auto taglist = tags().split(rx, QString::SkipEmptyParts);
|
||||
std::sort(taglist.begin(), taglist.end());
|
||||
return taglist;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue