Qt 6.11 is out! See what's new in the release
blog
Dock Widget Resizing Cursor
-
I'm trying to resize QDockWidget programitcally using the following code:
dockW->setMinimumSize(newSize);
dockW->setMaximumSize(maxSize);Depending on whether the width increased or decreased.
Although the widget resizes properly, in some situations the Splitter Cursor is lost when hovering over the dock widget resize area. It shows the mouse arrow instead.
Any idea why this happening? What can I do to restore the cursor after resize takes place?
Thanks.