KDE Plasma 5.8 LTS doesn't render transparency effects
Bug #1636252 reported by
X-Legs
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Onboard |
Fix Committed
|
Low
|
Unassigned |
Bug Description
After Onboard loads, the sections that should be transparent are statically rendered instead. This was not an issue in previous versions of Plasma 5. This is for version 1.3.0-1. Screenshot attached.
Notice how the left sidebar of the Onboard Preferences dialog is also rendered behind the right side of the keyboard. Hiding and reshowing the keyboard resets the background, but the background does not redraw when I move the keyboard.
Related branches
To post a comment you must log in.
What distribution is this?
There was a change in Onboard in version 1.2 that dropped gtk_window_ set_opacity( ) calls and did set_app_ paintable( True) instead. Since then all transparency was handled by cairo drawing. /bazaar. launchpad. net/~onboard/ onboard/ trunk/revision/ 2036
https:/
This could very well be a bug in Plasma or even Gtk, but I'm wondering what happens if you enable the old override_ background_ color() calls at /bazaar. launchpad. net/~onboard/ onboard/ trunk/view/ 2180/Onboard/ KbdWindow. py#L205
https:/
Could you python3/ dist-packages/ Onboard/ KbdWindow. py
sudo gedit /usr/lib/
and replace line 204
if gtk_version < Version(3, 18): # Xenial doesn't need them
with
if True: #gtk_version < Version(3, 18): # Xenial doesn't need them
?