QListWidget Item hover stylesheet
-
wrote on 12 Aug 2016, 09:37 last edited by
Hi,
I have QListwidget, if I do mouse hover on listwidget items the text should be display with underline. Like Qt welcome page recent projects list. I have tried QListWidget::item:hover {text-decoration: underline;}, but it is not working. Give me some solution.
Thanks in advance.
By
Vivek Anand -
Hi,
I have QListwidget, if I do mouse hover on listwidget items the text should be display with underline. Like Qt welcome page recent projects list. I have tried QListWidget::item:hover {text-decoration: underline;}, but it is not working. Give me some solution.
Thanks in advance.
By
Vivek AnandModeratorswrote on 12 Aug 2016, 09:44 last edited by raven-worx 8 Dec 2016, 09:45@anandvivek
probably the same issue like in this threadI suggest you go the item delegate way and check the state for
QStyle::State_MouseOver
and set the font underlined (QFont::setUnderline(true)
). -
wrote on 12 Aug 2016, 10:34 last edited by
Thanks for your suggestion. I will try this one.
3/3