I'd like to have a QTableWidget where the currently selected cell is indicated by adding a black circle over the cell's icon (I have gotten this much to work). I'm currently struggling with the fact that the widget seems to apply a blue tint to the selected cell's icon. I can't find any documentation referring to this. I have tried setting this stylesheet:
QTableWidget::item {selection-background-color: transparent;
selection-color: transparent;};
QTableWidget::item:selected{ background-color: transparent }
But these affect the background and text colors of the cell, respectively. I have also attempted to change the QTableWidget's QPalette's Highlight color, without success.
How do I get rid of this tint?