Skip to content

Commit

Permalink
remove RecomputeCurrentFling
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeus64 committed Sep 25, 2023
1 parent acb92db commit 803bc14
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 162 deletions.
6 changes: 3 additions & 3 deletions Source/Alcinoe.FMX.Layouts.pas
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ procedure TALCustomScrollBox.internalMouseDown(Button: TMouseButton; Shift: TShi
{$IFDEF DEBUG}
//ALLog(
// 'TALCustomScrollBox.MouseDown',
// 'Position:' + ALFloatToStrW(x, ALDefaultFormatSettingsW) + ',' + ALFloatToStrW(y, ALDefaultFormatSettingsW),
// 'Position:' + ALFormatFloatW('0.##', x, ALDefaultFormatSettingsW) + ',' + ALFormatFloatW('0.##', y, ALDefaultFormatSettingsW),
// TalLogType.verbose);
{$ENDIF}
FMouseEvents := true;
Expand All @@ -835,7 +835,7 @@ procedure TALCustomScrollBox.internalMouseMove(Shift: TShiftState; X, Y: Single)
{$IFDEF DEBUG}
//ALLog(
// 'TALCustomScrollBox.internalMouseMove',
// 'Position:' + ALFloatToStrW(x, ALDefaultFormatSettingsW) + ',' + ALFloatToStrW(y, ALDefaultFormatSettingsW),
// 'Position:' + ALFormatFloatW('0.##', x, ALDefaultFormatSettingsW) + ',' + ALFormatFloatW('0.##', y, ALDefaultFormatSettingsW),
// TalLogType.verbose);
{$ENDIF}
if FMouseEvents then begin
Expand All @@ -856,7 +856,7 @@ procedure TALCustomScrollBox.internalMouseUp(Button: TMouseButton; Shift: TShift
{$IFDEF DEBUG}
//ALLog(
// 'TALCustomScrollBox.internalMouseUp',
// 'Position:' + ALFloatToStrW(x, ALDefaultFormatSettingsW) + ',' + ALFloatToStrW(y, ALDefaultFormatSettingsW),
// 'Position:' + ALFormatFloatW('0.##', x, ALDefaultFormatSettingsW) + ',' + ALFormatFloatW('0.##', y, ALDefaultFormatSettingsW),
// TalLogType.verbose);
{$ENDIF}
if FMouseEvents and (Button = TMouseButton.mbLeft) then begin
Expand Down
Loading

0 comments on commit 803bc14

Please sign in to comment.