QT – CSS: decoration on focus

For some reason the accepted answer doesn’t seem to work (at least on Qt5.6). This makes the work for me:

QPushButton:focus {
   border: none;
   outline: none;
}

Leave a Comment