Summary: | The invisible handle of a non-modal overlay drawer is clickable | ||
---|---|---|---|
Product: | [Frameworks and Libraries] frameworks-kirigami | Reporter: | Eduardo Alvarado <eduardo.javier.alvarado.aaron> |
Component: | general | Assignee: | Marco Martin <notmart> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | bugseforuns, jackhill3103, nate |
Priority: | NOR | ||
Version First Reported In: | 5.93.0 | ||
Target Milestone: | Not decided | ||
Platform: | Arch Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: |
Video demo
Video demo (x264) |
Created attachment 148305 [details]
Video demo (x264)
If the previous video doesn't play, try this one.
*** Bug 453772 has been marked as a duplicate of this bug. *** *** Bug 454894 has been marked as a duplicate of this bug. *** I can no longer reproduce this Operating System: openSUSE Tumbleweed 20220829 KDE Plasma Version: 5.25.4 KDE Frameworks Version: 5.97.0 Qt Version: 5.15.5 Kernel Version: 5.19.2-1-default (64-bit) Graphics Platform: X11 Me neither. Looks like it got fixed. |
Created attachment 148291 [details] Video demo STEPS TO REPRODUCE 1. Run the code below with `qmlscene`. 2. Try to click on the invisible handle position. OBSERVED RESULT The handle reacts (closes the drawer). EXPECTED RESULT The handle does not react. SOFTWARE/OS VERSIONS Operating System: Arch Linux KDE Plasma Version: 5.24.4 KDE Frameworks Version: 5.93.0 Qt Version: 5.15.3 Kernel Version: 5.17.4-arch1-1 (64-bit) Graphics Platform: Wayland Processors: 12 × Intel® Core™ i5-10400 CPU @ 2.90GHz Memory: 15.5 GiB of RAM Graphics Processor: Mesa Intel® UHD Graphics 630 ADDITIONAL INFORMATION Code: import org.kde.kirigami 2.0 ApplicationWindow { width: Units.gridUnit * 25 height: Units.gridUnit * 25 pageStack.initialPage: Page { title: "Page" } globalDrawer: OverlayDrawer { modal: false width: Units.gridUnit * 10 Heading { text: "Drawer" } } }