Reputation: 4136
I'm having some trouble setting a border of a groupbox.
my aim is to have something like this:
but so far all I can get is this:
the stylesheet i'm using:
#groupBox {
border: 1px solid gray;
border-radius: 9px;
}
Upvotes: 24
Views: 23520
Reputation: 3529
I suggest
QGroupBox::title {
subcontrol-origin: margin;
left: 3px;
padding: 3 0 3 0;
}
for the title, to adjust the title more properly.
Upvotes: 0
Reputation: 1827
QGroupBox {
border: 1px solid gray;
border-radius: 9px;
margin-top: 0.5em;
}
QGroupBox::title {
subcontrol-origin: margin;
left: 10px;
padding: 0 3px 0 3px;
}
Upvotes: 50