Anonymous | Login | Signup for a new account | 2019-02-21 09:52 CET |
Main | My View | View Issues | Change Log | Roadmap | Docs |
Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||
ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||
0003748 | [JEDI VCL] 00 JVCL Components | minor | always | 2006-06-06 12:14 | 2006-06-07 03:18 | ||
Reporter | anudedeus | View Status | public | ||||
Assigned To | obones | ||||||
Priority | normal | Resolution | fixed | ||||
Status | resolved | Product Version | 3.20 | ||||
Summary | 0003748: JvXPCheckbox doesn't answer to space bar pressing | ||||||
Description |
Apparently the authors forgot that checkboxes should toggle its state (checked/unchecked) when it has the focus and the spacebar is pressed. Fix: TJvXPCustomCheckControl = class(...) protected {add the line:} procedure KeyDown(var Key: Word; Shift: TShiftState); override; (...) end; implementation {add the following} procedure TJvXPCustomCheckControl.KeyDown(var Key: Word; Shift: TShiftState); begin if Key = VK_SPACE then Checked := not Checked; inherited KeyDown(Key, Shift); end; |
||||||
Additional Information |
Recompile JvXPCtrlsD7R.dpk after changes. (Delphi7, check correct name for other versions) |
||||||
Tags | No tags attached. | ||||||
Attached Files | |||||||
|
Mantis 1.1.6[^] Copyright © 2000 - 2008 Mantis Group |