git-svn-id: https://svn.code.sf.net/p/kolmck/code@52 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07
This commit is contained in:
dkolmck
2010-03-18 18:37:07 +00:00
parent 83ed683a62
commit 6c878d4297
2 changed files with 9 additions and 15 deletions

View File

@ -406,7 +406,8 @@ begin
{$IFDEF _LE_DEBUG_} {$IFDEF _LE_DEBUG_}
AddLog(Sender, 'ListEdit:LVN_ITEMCHANGED'); AddLog(Sender, 'ListEdit:LVN_ITEMCHANGED');
{$ENDIF} {$ENDIF}
if (fCurLine <> fOwner.LVCurItem) then SetCurLVPos(fOwner.LVCurItem, fCurIdx); if (fCurLine <> fOwner.LVCurItem) then
SetCurLVPos(fOwner.LVCurItem, fCurIdx);
end; end;
end; end;
end; end;
@ -429,12 +430,14 @@ begin
WM_KILLFOCUS: WM_KILLFOCUS:
begin begin
pLE := PEcmListEdit(Sender.Parent.CustomObj); pLE := PEcmListEdit(Sender.Parent.CustomObj);
if not Assigned(pLE) then Exit; if Assigned(pLE) then begin
with pLE^ do if (fEmbedEd and fAutoHide) then begin with pLE^ do
if (fEmbedEd and fAutoHide) then begin
InternalStopEdit(True); InternalStopEdit(True);
HideInPlaceEd(True); HideInPlaceEd(True);
end; end;
end; end;
end;
// D[u]fa // D[u]fa
WM_CHAR: WM_CHAR:
if (Msg.wParam = VK_RETURN) then begin if (Msg.wParam = VK_RETURN) then begin

View File

@ -81,18 +81,9 @@ contains
KOLPrinters in 'KOLPrinters.pas', KOLPrinters in 'KOLPrinters.pas',
mckXPMenus in 'mckXPMenus.pas', mckXPMenus in 'mckXPMenus.pas',
XPMenus in 'XPMenus.pas', XPMenus in 'XPMenus.pas',
MCKGRushSplitterEditor in 'MCKGRushSplitterEditor.pas',
MCKGRushButtonEditor in 'MCKGRushButtonEditor.pas',
MCKGRushCheckBoxEditor in 'MCKGRushCheckBoxEditor.pas',
MCKGRushControls in 'MCKGRushControls.pas',
MCKGRushImageCollectionEditor in 'MCKGRushImageCollectionEditor.pas',
MCKGRushPanelEditor in 'MCKGRushPanelEditor.pas',
MCKGRushProgressBarEditor in 'MCKGRushProgressBarEditor.pas',
MCKGRushRadioBoxEditor in 'MCKGRushRadioBoxEditor.pas',
tinyPNG in 'tinyPNG.pas', tinyPNG in 'tinyPNG.pas',
tinyJPGGIFBMP in 'tinyJPGGIFBMP.pas', tinyJPGGIFBMP in 'tinyJPGGIFBMP.pas',
MZLib in 'MZLib.pas', MZLib in 'MZLib.pas',
KOLGRushControls in 'KOLGRushControls.pas',
mckWebBrowser in 'mckWebBrowser.pas', mckWebBrowser in 'mckWebBrowser.pas',
mckDHTML in 'mckDHTML.pas'; mckDHTML in 'mckDHTML.pas';