GNOME Bugzilla – Bug 337347
Favorites tag is still a tag, not a category
Last modified: 2006-06-06 22:53:49 UTC
Please describe the problem: Favorites tag is still a tag, not a category. Tag are no more useful (except the "hidden tag"). Steps to reproduce: 1. launch a f-spot with no previous db 2. look ma! No category for "favorites" ! Actual results: One cannot add tags as subtags of "favorites". Expected results: One should be able to add tags, such as "really favorites", "cool pictures", "for xscreensaver"... Does this happen every time? yes Other information: Patch: line 386 of TagStore.cs should read Tag favorites_tag = CreateTag (RootCategory, Catalog.GetString ("Favorites")); instead of Tag favorites_tag = CreateCategory (RootCategory, Catalog.GetString ("Favorites")); For completeness, the variable favorites_tag should be renamed to favorites_category
Created attachment 62808 [details] [review] This trivial fix makes that when creating a db from scratch, favorites is a category, not a tag. For sake of consistency
Created attachment 62886 [details] [review] better attachment This patch adds a database updater which acts also on old databases. Question remains whether the is_category should be dropped altogether.
committed