Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QSplitter - change the color of the grabbable area to make it more visible

Tags:

qt

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?

like image 777
Michael Vincent Avatar asked Apr 02 '15 11:04

Michael Vincent


1 Answers

Sure, use handle selector:

QSplitter::handle {
    background: red;
}
like image 77
svlasov Avatar answered Nov 15 '22 05:11

svlasov