Mac UI Sidebar Cosmetics

The sidebar elements all get a blue focus rectangle on
Mac OSX. This is a platform specific setting. This patch
removes the focus rectangle for sidebar components only.
This commit is contained in:
Mark Liversedge
2012-11-06 11:16:41 +00:00
parent aecd4737fa
commit f48ae3d2a8
5 changed files with 22 additions and 2 deletions

View File

@@ -26,6 +26,9 @@ IntervalTreeView::IntervalTreeView(MainWindow *mainWindow) : mainWindow(mainWind
setDragDropMode(QAbstractItemView::InternalMove);
setDragDropOverwriteMode(true);
setDropIndicatorShown(true);
#ifdef Q_OS_MAC
setAttribute(Qt::WA_MacShowFocusRect, 0);
#endif
invisibleRootItem()->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
}