┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-06-06 17:38:22 +0000
committerPeter Penz <[email protected]>2007-06-06 17:38:22 +0000
commite1cb019f78b421fc033d406121279485e6ab5711 (patch)
tree095a477ec593f280ab3c341fc305b4a118409186 /src
parent8d06f40d82b71e63dea764e0d5c4d4b3a1ec509e (diff)
Instead of darkening the background color of an inactive view, just use a transparent background. Makes no big difference for styles like Plastique, but looks better for Oxygen.
svn path=/trunk/KDE/kdebase/apps/; revision=672302
Diffstat (limited to 'src')
-rw-r--r--src/dolphinview.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index 1a33668e0..1e6fed776 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -1171,9 +1171,7 @@ void DolphinView::updateActivationState()
emit urlChanged(url());
emit selectionChanged(selectedItems());
} else {
- // darken the background if the view is inactive
- // TODO: does not work for a black background
- color = color.darker(105);
+ color.setAlpha(0);
}
QWidget* viewport = itemView()->viewport();