Switched to oxygen theme, logout && login, NO background wallpaper rendered https://twitter.com/xiangzhai/status/689642085910114304 Reproducible: Always Steps to Reproduce: 1. open systemsettings5, click Workspace theme, choose oxygen Look And Feel, click Apply 2. logout 3. login or just edit ~/.config/plasma-org.kde.plasma.desktop-appletsrc set Wallpaper's image is empty, for example: [Containments][26][Wallpaper][org.kde.image][General] Image=
when wallpaperPath is Empty or !exists, just fallback use isoft-artwork's, it is yet a workaround patch: diff --git a/wallpapers/image/image.cpp b/wallpapers/image/image.cpp index e18df00..8238c8c 100644 --- a/wallpapers/image/image.cpp +++ b/wallpapers/image/image.cpp @@ -108,7 +108,7 @@ QString Image::photosPath() const QString Image::wallpaperPath() const { - return m_wallpaperPath; + return QFile::exists(m_wallpaperPath) ? m_wallpaperPath : "/usr/share/isoft-artwork/background.png"; } void Image::addUrl(const QString &url)
Was able to reproduce in VirtualBox Plasma: 5.11.5 Frameworks: 5.42.0 Qt: 5.10.0 Kernel: 4.14.15-1-ARCH
cannot reproduce on Arch Linux, plasma 5.12 stable.
Me neither.