1 Sep
2024
1 Sep
'24
10:59 p.m.
On Sun Sep 1 22:31:02 2024 +0000, Nikolay Sivov wrote:
I see now that "updating" field is likely unavoidable, because EN_UPDATE/EN_CHANGE does not actually indicate an update or a change to contents. How do I test your changes? Maybe you have a small interactive test program.
/* i686-w64-mingw32-gcc main.c -l comdlg32 */
#include <windows.h>
#include <commdlg.h>
int main() {
CHOOSECOLOR cc = {0};
cc.lStructSize = sizeof(cc);
cc.Flags = CC_FULLOPEN;
ChooseColor(&cc);
return 0;
}
This is the shortest test program. - When changing the text for Hue, the right bar is not updated properly - When changing Hue/Sat to 999, the bar gets very weird -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5756#note_80641