View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0004378 | JEDI VCL | 00 JVCL Components | public | 2008-06-19 00:04 | 2008-10-29 06:23 |
Reporter | kraikov2 | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | ||||
Summary | 0004378: TJvInspector inplace editors doesn't recieve VK_RETURN and VK_ESCAPE | ||||
Description | The TJvInspector inplace editor returns wrong result when process the WM_GETDLGCODE which leads to VK_RETURN and VK_ESCAPE goes to default buttons on modal form. this is the patch which fix the problem for me: --- JvInspector.pas (revision 11802) +++ JvInspector.pas (working copy) @@ -5946,8 +5946,9 @@ case Msg.Msg of WM_GETDLGCODE: begin - if Inspector.WantTabs then - Msg.Result := Msg.Result or DLGC_WANTTAB; +// if Inspector.WantTabs then +// Msg.Result := Msg.Result or DLGC_WANTTAB; + Msg.Result := Msg.Result or DLGC_WANTALLKEYS; end; WM_SETFOCUS: begin | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2008-06-19 00:04 | kraikov2 | New Issue | |
2008-06-19 04:19 | obones | Note Added: 0014342 | |
2008-06-19 04:19 | obones | Status | new => feedback |
2008-10-29 06:22 | obones | Status | feedback => resolved |
2008-10-29 06:22 | obones | Resolution | open => fixed |
2008-10-29 06:22 | obones | Assigned To | => obones |
2008-10-29 06:22 | obones | Note Added: 0014931 |