Skip to content

Commit

Permalink
fix(progress): disabled all drawing
Browse files Browse the repository at this point in the history
  • Loading branch information
Torwent committed Jul 25, 2024
1 parent ec2e4a1 commit 89dea8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions osr/progress.simba
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ procedure TRSProgressReport.Update();
begin
Self.ClientImg.Clear();
//Self.TextColor := Self.GetNextCycleColor(Self.TextColor, 10);
Self.DrawBackground();
Self.DrawProgress();
//Self.DrawBackground();
//Self.DrawProgress();
end;

{$ENDIF}
Expand Down
2 changes: 1 addition & 1 deletion utils/settings.simba
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ begin

if not Self.GetObject('remote_input').has('hud_report') then
begin
Self.GetObject('remote_input').Put('hud_report', True);
Self.GetObject('remote_input').Put('hud_report', False);
modified := True;
end;

Expand Down

0 comments on commit 89dea8e

Please sign in to comment.