[Bug 56108] New: Edit control should stop processing characters when left mouse button is down
https://bugs.winehq.org/show_bug.cgi?id=56108 Bug ID: 56108 Summary: Edit control should stop processing characters when left mouse button is down Product: Wine Version: 9.0-rc3 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: comctl32 Assignee: wine-bugs(a)winehq.org Reporter: kyle.kcsoftwares(a)gmail.com Distribution: --- When the left mouse button is held down, the edit control should stop processing characters until the button is released. Fix : static LRESULT EDIT_WM_Char(EDITSTATE *es, WCHAR c) { BOOL control; + if (es->bCaptureState) + { + return 0; + } + control = GetKeyState(VK_CONTROL) & 0x8000; -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56108 Nikolay Sivov <bunglehead(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Fixed by SHA1| |d18a1fded2e2024ae2c8cdc4235 | |654ff2d8dd5e9 Resolution|--- |FIXED --- Comment #1 from Nikolay Sivov <bunglehead(a)gmail.com> --- Marking fixed d18a1fded2e2024ae2c8cdc4235654ff2d8dd5e9. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56108 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #2 from Alexandre Julliard <julliard(a)winehq.org> --- Closing bugs fixed in 10.4. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (1)
-
WineHQ Bugzilla