Issue
With QSplitter it is sometimes difficult to see whether there is a “grabbable” area and where to click in order to grab it.
I’d like to set the color of the grabbale area to something different to the background so it is visible.
Is this possible?
Solution
Sure, use handle
selector:
QSplitter::handle {
background: red;
}
Answered By – svlasov
Answer Checked By – Candace Johnson (BugsFixing Volunteer)