[Solved] Qt Border Color
General and Desktop
5
Posts
3
Posters
24.4k
Views
1
Watching
-
Hi,
I am trying to change the border color of any UI element in Qt, but it doesn't seem to have effect when I click on the item & go to stylesheet & write:
@border-color: rgb(0, 0, 0);@
Anyone else get this or have a solution? Thanks!!
-
try it :
@
border-color: rgb(0, 0, 0);
border-width : 1.2px;
border-style:inset;
@working for me
-
Worked!! Thanks, guys. :)