-
Notifications
You must be signed in to change notification settings - Fork 252
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
cmdline dropdown missing comma #765
Comments
This is very annoying, that the dropdown doesn't have the comma. I hope this is soon to be fixed. |
If you installed hamster using the package manager, .deb packages etc. then this worked for me:
if fact.tags:
label += " #%s" % (" #".join(fact.tags))
suggestions[label] += days Change label line to this: label += ", #%s" % (" #".join(fact.tags)) It rebuilds the cmdline using recent used tasks + category + tags. The change just adds a |
@storymode7 Thanks a lot, I was able to fix this bug using your answer on my flatpak install:
When the fix is that easy, I hope it is soon to be fixed in the repo. |
Now that v3.0.3 requires a comma before the tag in the cmdline, the behaviour of the cmdline dropdown list is inconvenient/inconsistent. The dropdown lists previous activities with tags, but without the comma, so if I select one of my previous tagged activities, I get a new activity with a category named "Category #Tag" instead of "Category" with the corresponding "Tag". The dropdown should rather have commas in the right place.
The text was updated successfully, but these errors were encountered: