Summary: | Background blur apply blur to titlebar component | ||
---|---|---|---|
Product: | [Applications] konsole | Reporter: | themachine02om |
Component: | general | Assignee: | Konsole Developer <konsole-devel> |
Status: | CONFIRMED --- | ||
Severity: | minor | CC: | dpearson1983, kde, puspitaadak9876, rgawenda, themachine02om |
Priority: | NOR | ||
Version: | 22.04.2 | ||
Target Milestone: | --- | ||
Platform: | Arch Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Confirmed that this bug still exist in Konsole 22.12.3 |
Description
themachine02om
2022-06-27 22:23:09 UTC
Created attachment 158283 [details]
Confirmed that this bug still exist in Konsole 22.12.3
*** Bug 457455 has been marked as a duplicate of this bug. *** I am the author of another window decoration and application style (https://github.com/paulmcauley/klassy) that applies blur to various components, and can confirm this bug in Konsole. Another side effect is that blur doesn't show at all with my Application Style when I blur the toolbar/header area to match the titlebar. This problem with Konsole is caused by the fact it is trying to apply blur to the entire window, rather than also specifying to blur just the input/output text area region. I'm assuming the following function is being used, and the problem is that the final optional region parameter has been omitted: KWindowEffects::enableBlurBehind(QWindow *window, bool enable = true, const QRegion ®ion = QRegion()) The lack of specific region parameter in KWindowEffects::enableBlurBehind also prevents Konsole from blurring at all when the application style also blurs a region. E.g.: https://github.com/paulmcauley/klassy/issues/114 |