Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
e33c2193
Commit
e33c2193
authored
Jan 27, 2009
by
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projecttreewidget.cpp
View file @
e33c2193
...
...
@@ -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);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment