I want to hide the border of the QTreeWidget i´m customizing.
I want it to be the same when i select an item inside. But this special outline doesn´t work at all. I want it to be the same as the first image.
I use this piece of css code:
QTreeView {
show-decoration-selected: 0;
background: transparent;
}
QTreeView::item:selected
{
background-color: #00CDDF;
font-weight: bold;
outline: none;
}
QTreeView::branch:selected {
background-color: #00CDDF;
outline: none
}