标签: c++ python css macos qt
我正在使用带有自定义背景图像的QListView,我想摆脱OS X上QListView周围出现的蓝色轮廓边框。
QListView
我尝试使用以下方式设置样式:
border: 0 none; outline: 0 none; border-collapse: collapse;
但它仍然出现。
我需要做些什么才能摆脱这种蓝色色调?
答案 0 :(得分:13)
这应该有效:
yourListView->setAttribute(Qt::WA_MacShowFocusRect, false);