In native Windows, the COPY command will display the names of the files as they are copied. Wine should do the same. This change enables that.
--
v13: cmd: Allow '+' as delimiter for tab-completion, e.g. 'copy file+file2'.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8200
Previously, depending on how the sin() was calculated, we could get a
small number or exactly 0, which unfortunately can be pretty far
between in terms of ULPs. We don't really want to test edge-case
accuracy with trig functions in the first place, so just nudge the
angle away from exact values.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/8263
comctl32/treeview: Return from TREEVIEW_LButtonDown when the treeview handle is invalid.
LButtonDown should return when the treeview handle is invalid (e.g. destroyed) after NM_CLICK to prevent further message processing.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58211
--
v2: comctl32/treeview: Return from TREEVIEW_LButtonDown when the treeview handle is invalid.
https://gitlab.winehq.org/wine/wine/-/merge_requests/8258