tvplanit: Fix mouse-wheel scrolling in TVpDayEdit when editing is active.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8447 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2022-09-05 08:04:39 +00:00
parent 5751dde6a7
commit 4af1e301a7

View File

@ -2107,6 +2107,7 @@ end;
function TVpDayView.DoMouseWheel(Shift: TShiftState; WheelDelta: Integer; function TVpDayView.DoMouseWheel(Shift: TShiftState; WheelDelta: Integer;
MousePos: TPoint): Boolean; MousePos: TPoint): Boolean;
begin begin
EndEdit(self);
Result := inherited DoMouseWheel(Shift, WheelDelta, MousePos); Result := inherited DoMouseWheel(Shift, WheelDelta, MousePos);
end; end;