Skip to content
Snippets Groups Projects
Commit e33c2193 authored by Jens Bache-Wiig's avatar Jens Bache-Wiig
Browse files

Fixes: Kill alternate row colors

Details:
It was worth a try but it seems redundant, so
we might as well kill it.
parent e71c9807
No related merge requests found
......@@ -74,13 +74,6 @@ public:
setContextMenuPolicy(Qt::CustomContextMenu);
setUniformRowHeights(true);
setTextElideMode(Qt::ElideNone);
setAlternatingRowColors(true);
QPalette pal = palette();
if (pal.base().color() == Qt::white) { // Leave dark themes as they are
pal.setBrush(QPalette::AlternateBase, QColor(239, 239, 239));
setPalette(pal);
}
setProperty("AlternateEmpty", true); // Let Manhattan to override style default
// setExpandsOnDoubleClick(false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment