[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-04-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=465790

Bug Janitor Service  changed:

   What|Removed |Added

   Priority|HI  |VHI

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-04-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=465790

David Edmundson  changed:

   What|Removed |Added

 CC||gigastarcra...@proton.me

--- Comment #55 from David Edmundson  ---
*** Bug 467778 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-31 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=465790

David Edmundson  changed:

   What|Removed |Added

 CC||lveitas...@gmail.com

--- Comment #54 from David Edmundson  ---
*** Bug 467931 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-29 Thread Marco Rebhan
https://bugs.kde.org/show_bug.cgi?id=465790

Marco Rebhan  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #53 from Marco Rebhan  ---
(In reply to K Freed from comment #52)
> Kwin 5.27.3 --> Still broken using ARC OSX on KDE

Yes, it's fixed in 5.27.4 (see the "Version Fixed In" field).

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-29 Thread K Freed
https://bugs.kde.org/show_bug.cgi?id=465790

K Freed  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #52 from K Freed  ---
Kwin 5.27.3 --> Still broken using ARC OSX on KDE

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-22 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=465790

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||5.27.4

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-22 Thread Michael
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #51 from Michael  ---
Just to confirm,
https://invent.kde.org/plasma/kwin/commit/715f4147fec2734a0ed56f7ae799e678e18f451f
on top of kwin-5.27.3 fixed the issue on my side. Thanks a lot

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-22 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=465790

Vlad Zahorodnii  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/kwin/commit/82b2fa37c240 |ma/kwin/commit/715f4147fec2
   |8bd86011376fddfe225d3fc5a1c |734a0ed56f7ae799e678e18f451
   |d   |f

--- Comment #50 from Vlad Zahorodnii  ---
Git commit 715f4147fec2734a0ed56f7ae799e678e18f451f by Vlad Zahorodnii, on
behalf of David Edmundson.
Committed on 22/03/2023 at 08:04.
Pushed by vladz into branch 'Plasma/5.27'.

Avoid accidental creation of backing stores for offscreen surfaces

Aurorae decorations and several effects are powered by QQuickWindows
that render into offscreen surfaces.

Iterating through all windows and then calling winId() will create a
platform window including for our Aurorae decorations.

Not only is this wasteful but it caused an issue with resizing windows.
QWindow code updates the internal state directly if there's no
underlying platform window, if there is it delegates responsiblity to
the backend. Our own QPA didn't update geometry whilst hidden.

The result of that is Aurorae decorations "randomly" stop resizing
correctly as the contentItem stops resizing to the window size.
(cherry picked from commit 82b2fa37c2408bd86011376fddfe225d3fc5a1cd)

M  +1-1src/plugins/windowsystem/windoweffects.cpp
M  +1-1src/plugins/windowsystem/windowsystem.cpp
M  +1-1src/unmanaged.cpp

https://invent.kde.org/plasma/kwin/commit/715f4147fec2734a0ed56f7ae799e678e18f451f

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-21 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=465790

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED
  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/kwin/commit/5e16c3337e26 |ma/kwin/commit/82b2fa37c240
   |6ade00cf698c679d5012fb4 |8bd86011376fddfe225d3fc5a1c
   |8   |d

--- Comment #49 from David Edmundson  ---
Git commit 82b2fa37c2408bd86011376fddfe225d3fc5a1cd by David Edmundson.
Committed on 21/03/2023 at 15:43.
Pushed by davidedmundson into branch 'master'.

Avoid accidental creation of backing stores for offscreen surfaces

Aurorae decorations and several effects are powered by QQuickWindows
that render into offscreen surfaces.

Iterating through all windows and then calling winId() will create a
platform window including for our Aurorae decorations.

Not only is this wasteful but it caused an issue with resizing windows.
QWindow code updates the internal state directly if there's no
underlying platform window, if there is it delegates responsiblity to
the backend. Our own QPA didn't update geometry whilst hidden.

The result of that is Aurorae decorations "randomly" stop resizing
correctly as the contentItem stops resizing to the window size.

M  +1-1src/plugins/windowsystem/windoweffects.cpp
M  +1-1src/plugins/windowsystem/windowsystem.cpp
M  +1-1src/unmanaged.cpp

https://invent.kde.org/plasma/kwin/commit/82b2fa37c2408bd86011376fddfe225d3fc5a1cd

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-21 Thread Marco Rebhan
https://bugs.kde.org/show_bug.cgi?id=465790

Marco Rebhan  changed:

   What|Removed |Added

 CC||m...@dblsaiko.net

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-20 Thread Gordan Vrbanec
https://bugs.kde.org/show_bug.cgi?id=465790

Gordan Vrbanec  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1
 CC||gordan.vrbanec.vepar@gmail.
   ||com

--- Comment #48 from Gordan Vrbanec  ---
Same thing happens on my system with "Rounded Dark" window decorations when
using Wayland.
Haven't tried other ones though...

Kernel: 6.2.7-arch1-1
KDE Plasma Version: 5.27.3
KDE Frameworks Version: 5.104.0
Qt version: 5.15.8

AMD Ryzen 5 5600g APU

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-20 Thread Adam Batkin
https://bugs.kde.org/show_bug.cgi?id=465790

Adam Batkin  changed:

   What|Removed |Added

 CC||a...@batkin.net

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-20 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=465790

David Edmundson  changed:

   What|Removed |Added

 CC||yiz...@kulodgei.com

--- Comment #47 from David Edmundson  ---
*** Bug 463686 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-20 Thread postix
https://bugs.kde.org/show_bug.cgi?id=465790

postix  changed:

   What|Removed |Added

 CC||pos...@posteo.eu

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-20 Thread Henning
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #46 from Henning  ---
For me, Willow-dark works now!

Operating System: Fedora Linux 37
KDE Plasma Version: 5.27.3
KDE Frameworks Version: 5.104.0
Qt Version: 5.15.8

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-19 Thread Ahmed
https://bugs.kde.org/show_bug.cgi?id=465790

Ahmed  changed:

   What|Removed |Added

 CC||ahmed@tutanota.com

--- Comment #45 from Ahmed  ---
I have the same issue when using Wayland.

Kubuntu 22.10
KDE Plasma 5.27.3
KDE Frameworks version: 5.104.0
QT version: 5.15.6
Global theme: Adapta
Global scale: 100% (first monitor), and 150% (second monitor)
CPU: Intel® Core™ i5-4200M CPU
iGPU: Mesa Intel® HD Graphics 4600
Kernel version: 6.2.6-1-liquorix-amd64 (64-bit)

The issue happens randomly with applications like: Konsole, VSCodium, Discover,
and Joplin.

I have also noticed that the buttons of the window are invisible, but can be
clicked to minimize, maximize, and close the window.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-19 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=465790

inky1...@gmail.com changed:

   What|Removed |Added

 CC||inky1...@gmail.com

--- Comment #44 from inky1...@gmail.com ---
Also happening with other decorations.
KDE Plasma 5.27.3
Arch Linux
GPU: NVIDIA GTX 1050

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-17 Thread Michael
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #43 from Michael  ---
(In reply to Michael from comment #27)
> I have the same issue with the arc-kde theme, 100% scaling (1920x1080) and a
> multi monitor setup
> 
> Operating System: Gentoo Linux 
> KDE Plasma Version: 5.27.2
> KDE Frameworks Version: 5.103.0
> Qt Version: 5.15.8
> Kernel Version: 6.2.0-zen1 (64-bit)
> Graphics Platform: Wayland
> Processors: 16 × AMD Ryzen 7 1800X Eight-Core Processor
> Memory: 31.3 GiB of RAM
> Graphics Processor: AMD Radeon Vega Frontier Edition

KDE Frameworks Version: 5.104.0
KDE Plasma Version: 5.27.3

Window Border size: Tiny (not arc-kde's default, it that makes a difference)

I got Konsole in a state where resizing the window resizes the window
decoration in a 1:1 way (x & y axis),
this is new behavior for me as normally the decoration is only malformed but
stays fixed even when resizing.
I'm unable to create a video of it but attached are a few screenshots to
illustrate the behavior:
https://imgur.com/a/fukrBgt

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-17 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #42 from Vlad Zahorodnii  ---
Please don't post "me too" comments unless you have valuable information that
can help us with reproducing and fixing this bug.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-15 Thread K Freed
https://bugs.kde.org/show_bug.cgi?id=465790

K Freed  changed:

   What|Removed |Added

Version|5.27.0  |5.27.2

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-15 Thread K Freed
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #41 from K Freed  ---
Was not fixed in 5.27.2

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-15 Thread K Freed
https://bugs.kde.org/show_bug.cgi?id=465790

K Freed  changed:

   What|Removed |Added

 CC||kortra...@gmail.com
   Version Fixed In|5.27.2  |

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-14 Thread user151516
https://bugs.kde.org/show_bug.cgi?id=465790

user151516  changed:

   What|Removed |Added

 CC||evanmol...@gmail.com

--- Comment #40 from user151516  ---
I encounter this bug while using the Ant-Dark theme on 5.27.3

Operating System: Arch Linux 
KDE Plasma Version: 5.27.3
KDE Frameworks Version: 5.104.0
Qt Version: 5.15.8
Kernel Version: 6.2.6-arch1-1 (64-bit)
Graphics Platform: Wayland

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-13 Thread David
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #39 from David  ---
Wine apps*

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-13 Thread David
https://bugs.kde.org/show_bug.cgi?id=465790

David  changed:

   What|Removed |Added

 CC||gglol555gglol...@gmail.com

--- Comment #38 from David  ---
I encounter this issue every time I attempt to open submenus in various
applications such as Firefox, Steam, Wine, and VSCodium.

Resolution: 2880x1620@200%
Operating System: Arch Linux 
KDE Plasma Version: 5.27.2
KDE Frameworks Version: 5.104.0
Qt Version: 5.15.8
Kernel Version: 6.2.5-arch1-1 (64-bit)
Graphics Platform: Wayland
Processors: 16 × AMD Ryzen 7 5800H with Radeon Graphics
Graphics Processor: AMD Radeon Graphics

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-13 Thread Oleg
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #37 from Oleg  ---
Created attachment 157233
  --> https://bugs.kde.org/attachment.cgi?id=157233=edit
Malformed decorations in fullscreen

Can confirm this issue with default Windows theme

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-13 Thread Oleg
https://bugs.kde.org/show_bug.cgi?id=465790

Oleg  changed:

   What|Removed |Added

 CC||o...@np880.ru

--- Comment #36 from Oleg  ---
Created attachment 157232
  --> https://bugs.kde.org/attachment.cgi?id=157232=edit
Malformed decorations in windowed mode

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-11 Thread GolDNenex
https://bugs.kde.org/show_bug.cgi?id=465790

GolDNenex  changed:

   What|Removed |Added

 CC||goldne...@gmail.com

--- Comment #35 from GolDNenex  ---
Since 5.27 I'm impacted by this bug. I'm not really sure what trigger it. This
bug  also happen to a window that has just been opened.

Operating System: EndeavourOS 
KDE Plasma Version: 5.27.2
KDE Frameworks Version: 5.103.0
Qt Version: 5.15.8
Kernel Version: 6.2.2-zen2-1-zen (64-bit)
Graphics Platform: Wayland
Processors: 8 × Intel® Core™ i7-3820 CPU @ 3.60GHz
Memory: 15,5 GiB of RAM
Graphics Processor: AMD Radeon RX 6700 XT

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-06 Thread Miren Radia
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #34 from Miren Radia  ---
I should have added that it happens for me sometimes when I move windows
between my 2 monitors (1x 2256x1504 laptop screen + 1x 3840x2160 external
monitor both at 100% scaling) *after* they have been quick-tiled (e.g. to the
right of the screen). However, it definitely isn't consistent.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-06 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #33 from Nate Graham  ---
Still cannot reproduce with either single or multi-screen arrangements with any
Aurorae theme, or when moving windows between screens or disconnecting one of
them. :/

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-05 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #32 from punk.salt6...@fastmail.com ---
Non-qt apps like Firefox also can get it, but it happens rarely.(In reply to
Michał Dybczak from comment #31)
> To add more details to me previous comment:
> 
> Maybe all apps became immune, because I couldn't trigger it anymore.
> Non-qt apps like Firefox also can get it, but it happens rarely.

This is the opposite of what I'm experiencing. Once the memory has been
corrupted, new windows of the same app starts out as normal but easily becomes
corrupted after a few minimize and move / resize events. 

Also for me what's inside the windows doesn't seem to matter. Firefox, kitty,
obs studio, everything can get bugged. 

I think this just means it's very random. Random memory gets corrupted and
that's why we experience different results.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-05 Thread Michał Dybczak
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #31 from Michał Dybczak  ---
To add more details to me previous comment:

No scaling (100%)
Aurorae: WhiteSur Dark

The issue happens more likely on Qt apps, like Konsole. You need to adjust the
width of a window to trigger it. This time, I got even a new effect: the
titlebar was expanding down, and the graphics was expanding along the way,
which is looked as if it was melting Quite trippy...
Once I closed the Konsole from the dock (I couldn't interact with the
enormously extended buttons) and launched it again, it was immune to that
glitch. Maybe all apps became immune, because I couldn't trigger it anymore.
Non-qt apps like Firefox also can get it, but it happens rarely.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-04 Thread Michał Dybczak
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #30 from Michał Dybczak  ---
I just noticed the same bug on 5.27.2 when I resized VLC window in single
monitor setup in Wayland. The same visual effect as previously, so the bug is
not squashed yet.
Hybrid graphic with GTX 970 M

Operating System: Manjaro Linux 
KDE Plasma Version: 5.27.2
KDE Frameworks Version: 5.103.0
Qt Version: 5.15.8
Kernel Version: 6.2.1-2-MANJARO (64-bit)
Graphics Platform: Wayland
Processors: 8 × Intel® Core™ i7-6700HQ CPU @ 2.60GHz
Memory: 7.6 GiB of RAM
Graphics Processor: Mesa Intel® HD Graphics 530
Manufacturer: Alienware
Product Name: Alienware 17 R3
System Version: 1.13.1

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-03 Thread arbitar
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #29 from arbitar  ---
(In reply to Nate Graham from comment #21)
> For people who can still reproduce the issue, can you be specific about what
> scaling settings, window decoration themes, and GPU you're using?

Definitely still happening for me.
Scaling settings: 100% on 3840x2160 60Hz display
Window decoration theme: Reactionary (https://store.kde.org/p/1252059)
GPU: RX 580 (Ellesmere 1002:67df) /w amdgpu on Wayland

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-03 Thread Miren Radia
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #28 from Miren Radia  ---
I can reproduce this problem on my multi-monitor setup (1x 2256x1504 laptop
screen + 1x 3840x2160 external monitor both at 100% scaling) using the
WhiteSur-dark theme (https://github.com/vinceliuice/WhiteSur-kde). It seems to
happen mostly when I move windows from one monitor to the other (or I
disconnect the external monitor). My setup is as follows:

Operating System: Fedora Linux 37
KDE Plasma Version: 5.27.2
KDE Frameworks Version: 5.103.0
Qt Version: 5.15.8
Kernel Version: 6.1.14-200.fc37.x86_64 (64-bit)
Graphics Platform: Wayland
Processors: 16 × 12th Gen Intel® Core™ i7-1260P
Memory: 31.1 GiB of RAM
Graphics Processor: Mesa Intel® Graphics
Manufacturer: Framework
Product Name: Laptop (12th Gen Intel Core)
System Version: A6

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-03 Thread Miren Radia
https://bugs.kde.org/show_bug.cgi?id=465790

Miren Radia  changed:

   What|Removed |Added

 CC||miren_ra...@yahoo.co.uk

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-02 Thread Michael
https://bugs.kde.org/show_bug.cgi?id=465790

Michael  changed:

   What|Removed |Added

 CC||egge...@protonmail.com

--- Comment #27 from Michael  ---
I have the same issue with the arc-kde theme, 100% scaling (1920x1080) and a
multi monitor setup

Operating System: Gentoo Linux 
KDE Plasma Version: 5.27.2
KDE Frameworks Version: 5.103.0
Qt Version: 5.15.8
Kernel Version: 6.2.0-zen1 (64-bit)
Graphics Platform: Wayland
Processors: 16 × AMD Ryzen 7 1800X Eight-Core Processor
Memory: 31.3 GiB of RAM
Graphics Processor: AMD Radeon Vega Frontier Edition

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-01 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #26 from punk.salt6...@fastmail.com ---
(In reply to Nate Graham from comment #21)
> I'm not able to reproduce those issues on Wayland with Plasma 5.27.2 and
> 200% scaling using the Layan and Dexy decoration themes with an Intel iGPU.
> 
> For people who can still reproduce the issue, can you be specific about what
> scaling settings, window decoration themes, and GPU you're using?

I'm on 100% scaling, using Dexy window decoration theme, with Amd 6900 xt gpu.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-01 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=465790

--- Comment #25 from kdeb...@thismymail.com ---
(In reply to Nate Graham from comment #21)
> I'm not able to reproduce those issues on Wayland with Plasma 5.27.2 and
> 200% scaling using the Layan and Dexy decoration themes with an Intel iGPU.
> 
> For people who can still reproduce the issue, can you be specific about what
> scaling settings, window decoration themes, and GPU you're using?

My Scaling is at 100%, my window decoration theme is "Sweet Mars" by
"eliverlara". My Graphics chip is the "AMD Radeon RX Vega 7" which is
integrated into the "AMD Ryzen 7 4700U" CPU.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 465790] Resizing an Aurorae-decorated window leads to malformed decorations

2023-03-01 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=465790

Nate Graham  changed:

   What|Removed |Added

Summary|resizing a window leads to  |Resizing an
   |malformed decoration under  |Aurorae-decorated window
   |Aurorae |leads to malformed
   ||decorations

-- 
You are receiving this mail because:
You are watching all bug changes.