QT - CSS: decoration on focus

后端 未结 5 504
深忆病人
深忆病人 2020-12-03 14:23

I\'m experimenting a bit with CSS for making a cool user interface for my QT application.

I have this problem: I have a QPushButton and when it is on focus it has a r

5条回答
  •  臣服心动
    2020-12-03 15:07

    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;
    }
    

提交回复
热议问题