Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package konsole for openSUSE:Factory checked in at 2021-06-02 22:10:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/konsole (Old) and /work/SRC/openSUSE:Factory/.konsole.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "konsole" Wed Jun 2 22:10:21 2021 rev:139 rq:895375 version:21.04.1 Changes: -------- --- /work/SRC/openSUSE:Factory/konsole/konsole.changes 2021-05-16 23:40:24.341990987 +0200 +++ /work/SRC/openSUSE:Factory/.konsole.new.1898/konsole.changes 2021-06-02 22:10:24.780128107 +0200 @@ -1,0 +2,6 @@ +Tue May 25 12:17:13 UTC 2021 - Fabian Vogt <fab...@ritter-vogt.de> + +- Add patch to fix scrollbar appearance in some configurations (kde#437223): + * 0001-Fix-alpha-channel-of-scrollbar-colors.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-alpha-channel-of-scrollbar-colors.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ konsole.spec ++++++ --- /var/tmp/diff_new_pack.vTWuaI/_old 2021-06-02 22:10:25.424128055 +0200 +++ /var/tmp/diff_new_pack.vTWuaI/_new 2021-06-02 22:10:25.428128054 +0200 @@ -40,6 +40,8 @@ Source24: utilities-terminal-su-48.png Source25: utilities-terminal-su-64.png Source26: utilities-terminal-su-128.png +# PATCH-FIX-UPSTREAM +Patch1: 0001-Fix-alpha-channel-of-scrollbar-colors.patch BuildRequires: fdupes BuildRequires: kf5-filesystem BuildRequires: update-desktop-files ++++++ 0001-Fix-alpha-channel-of-scrollbar-colors.patch ++++++ >From 585f9a561a07ec1cf5c20af37229667a3009362a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Javier=20Merino=20Mor=C3=A1n?= <ninj...@gmail.com> Date: Tue, 25 May 2021 13:14:20 +0200 Subject: [PATCH] Fix alpha channel of scrollbar colors Commit 72d604c6cc96e0c2439244382ac07c6601970835 refactored some code from TerminalDisplay into a new TerminalColor class, and in the process lost an F on setAlphaF(). BUG: 437223 (cherry picked from commit 1cda384ec34e70ce052f8d177a8afcb665964663) --- src/terminalDisplay/TerminalColor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminalDisplay/TerminalColor.cpp b/src/terminalDisplay/TerminalColor.cpp index 79dc1cd2..042135a0 100644 --- a/src/terminalDisplay/TerminalColor.cpp +++ b/src/terminalDisplay/TerminalColor.cpp @@ -121,7 +121,7 @@ namespace Konsole QColor buttonTextColor = m_colorTable[DEFAULT_FORE_COLOR]; QColor backgroundColor = m_colorTable[DEFAULT_BACK_COLOR]; - backgroundColor.setAlpha(m_opacity); + backgroundColor.setAlphaF(m_opacity); QColor buttonColor = backgroundColor.toHsv(); if (buttonColor.valueF() < 0.5) { -- 2.25.1