szopin / harbour-sfos-forum-viewer

SFOS Forum Viewer
MIT License
4 stars 10 forks source link

Don't highlight titles of read threads #43

Closed ichthyosaurus closed 4 years ago

ichthyosaurus commented 4 years ago

I can't use the SDK at the moment, but I think this should do it:

in FirstPage.qml in the Label item with 'text: title' @ 284:
old:
                            color: highlighted || item.hasNews ? Theme.highlightColor
                                                               : Theme.primaryColor

new:
                            color: highlighted || item.hasNews
                                   ? Theme.highlightColor
                                   : (item.lastPostNumber < highest_post_number
                                      ? Theme.primaryColor
                                      : Theme.secondaryColor)
szopin commented 4 years ago

Works great, thanks!

szopin commented 4 years ago

Fixed in 0.9.3