I've implemented a custom titlebar using QToolBar. I've applied the style to it as shown below.
Qt Code:
  1. this->setStyleSheet("background: #646464; border: 0px; border-top-left-radius: 10px; border-top-right-radius: 10px;");
To copy to clipboard, switch view to plain text mode 
Now I got the rounded edges, but the left-over part after the border-radius is still visible. How do I "cut" it or How do I make it transparent ?
Thank you.