https://bugs.kde.org/show_bug.cgi?id=421816
--- Comment #3 from secretagent0...@gmail.com --- Let me correct my previous comment. It shouldn't be difficult even for setting selection more opaque. Let's see first how to make selection more transparent. For instance, if we want to reduce alpha by x%. Then: An = Ao*(100-x)/100 Where Ao is old alpha value, and An is new alpha value. Now, if we want to make selection more opaque, we can do the same thing with 255-An and 255-Ao, namely: 255-An = (255-Ao)*(100-x)/100, which gives us An = 255-(255-Ao)*(100-x)/100 -- You are receiving this mail because: You are watching all bug changes.