Ignore:
Timestamp:
Jun 15, 2019, 7:20:36 PM (5 years ago)
Author:
chronos
Message:
  • Fixed: Incorrectly appended lines in Help form causing exception.
  • Modified: Refactored code in Help form for better readability.
  • Fixed: Mouse sheel scrolling sensitivity.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/PVSB.pas

    r91 r171  
    109109    if Max < ScrollBar.PageSize then Result := False
    110110    else begin
    111       NewPos := ScrollBar.Position - Delta div 300;
     111      NewPos := ScrollBar.Position - Delta div 30;
    112112      if NewPos < 0 then NewPos := 0;
    113113      if NewPos > Max - ScrollBar.PageSize + 1 then
Note: See TracChangeset for help on using the changeset viewer.