Bug: Selecting multiple tags and choosing delete only removes one
When I select multiple tags with the tag selector at bottom left and choose delete tag, the software only deletes the tag on which I clicked the right mouse button. I would expect it to delete all tags that I have chosen or to highlight only one tag when I press the right mouse button. Deleting multiple tags would be a better option for me.
Additionally, deleting tags from a large library (4600 entries) is very slow.
Mikko
Additionally, deleting tags from a large library (4600 entries) is very slow.
Mikko
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
To clean my tags faster, I went to delete them from the database. The idea was to first delete all unnecessary tags from tags and then clean up itemtags with one sql query.
Before doing any modifications, I explored the database a bit. Running the following query listed all the tags that I had just deleted.
SELECT * FROM tags where tagID not in (select distinct tagID from itemtags)
Is leaving these orphaned tags in the database by design or is it a bug?
Mikko
Mikko
Removing a single tag results in approximately a thousand SQL queries.
I posted the log with debug level 5 here
http://rafb.net/p/NqIsxL53.html
There is probably some room for optimizing the code here ;)
Mikko