[SOLVED] QSplitter – change the color of the grabbable area to make it more visible

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)

Leave a Reply

Your email address will not be published. Required fields are marked *