Collections: filter by book status#13099
Conversation
| table.insert(subtitle, self.ui.bookinfo.prop_text[prop] .. " " .. value) | ||
| if self.match_table.status then | ||
| local status_string = BookList.getBookStatusString(self.match_table.status, true) | ||
| table.insert(subtitle, "\u{0000}" .. status_string) -- sorted first |
There was a problem hiding this comment.
(Assuming the font renders a NUL as a zero-width glyph, or not at all, of course).
There was a problem hiding this comment.
Looks like it's zero-width.
See screenshots in #12981.
"N/A" in the list of tags has the same symbol.
|
Nothing jumps out at a quick glance ;). |
|
I left a comment on the closed PR #12981 (comment) about a bug in the filter by metadata implementation. The fix can probably be added to this PR which is in related code (unless you want a new PR) Also, I see all these features are being added to collections, which means they're not usable in the main view and isn't a flat view like #8472. Is there a plan to add these filtering options to other views? (I suppose you could add an "All" pseudo-collection. But there's still imitations in the collections view: it's not sortable for example.) |
This change is