SVN commit 895404 by mart: use always the plasma text color to paint miniatures: looks the same with the default theme but looks less terrible with themes that uses system colors M +6 -6 pager.cpp --- trunk/KDE/kdebase/workspace/plasma/applets/pager/pager.cpp #895403:895404 @@ -913,25 +913,25 @@ // Inactive windows QColor drawingColor = plasmaColorTheme->foreground(KColorScheme::InactiveText).color(); - drawingColor.setAlpha(50); + drawingColor.setAlpha(45); QBrush windowBrush(drawingColor); // Inactive windows Active desktop - drawingColor.setAlpha(192); + drawingColor.setAlpha(90); QBrush windowBrushActiveDesk(drawingColor); // Inactive window borders - drawingColor = plasmaColorTheme->foreground(KColorScheme::NeutralText).color(); - drawingColor.setAlpha(238); + drawingColor = defaultTextColor; + drawingColor.setAlpha(130); QPen windowPen(drawingColor); // Active window borders QPen activeWindowPen(defaultTextColor); // Active windows - drawingColor.setAlpha(190); + drawingColor.setAlpha(130); QBrush activeWindowBrush(drawingColor); // Active windows Active desktop - drawingColor.setAlpha(228); + drawingColor.setAlpha(155); QBrush activeWindowBrushActiveDesk(drawingColor); if (m_showOwnBackground && (formFactor() == Plasma::Vertical || formFactor() == Plasma::Horizontal)) {