mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
Cocoa: CocoaDatePicker: optimize code
This commit is contained in:
parent
3d8dd85474
commit
484e6b3efd
@ -59,12 +59,11 @@ begin
|
||||
// After mouse event, has our date changed
|
||||
newDate:= NSDateToDateTime(Self.dateValue);
|
||||
dateClicked:= (oldDate <> newDate);
|
||||
if dateClicked and Assigned(callback) then
|
||||
if dateClicked then
|
||||
callback.SendOnChange;
|
||||
|
||||
// This also calls OnClick....
|
||||
if Assigned(Callback) then
|
||||
callback.MouseUpDownEvent(event, true);
|
||||
callback.MouseUpDownEvent(event, true);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user