Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.2, 6.10
-
None
Description
Tested with 6.8.2 and 6.10.
Tested on two PCs, both have the same behavior. The Material drawer is clearly not smooth.
- Windows 11 Nvidia 4070
- Windows 11 AMD 7600
2025-03-17 11-08-18.mp4
2025-03-17 11-07-59.mp4
import QtQuick import QtQuick.Controls // Smooth // import QtQuick.Controls.Material // Not smooth ApplicationWindow { id: window width:1366 height: 768 visible: true Button { text: "open" onClicked: drawer.open() } Drawer { id: drawer width: 0.66 * window.width height: window.height Button { text: "close" onClicked: drawer.close() } } }