Skip to content

Commit

Permalink
Fixed tab order in installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Pax1601 committed Dec 3, 2023
1 parent e30f161 commit f56bd51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/@types/olympus/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2232,7 +2232,7 @@ declare module "unit/unitsmanager" {
* @param units (Optional) Array of units to apply the control to. If not provided, the operation will be completed on all selected units.
*/
scenicAAA(units?: Unit[] | null): void;
/** Instruct units to enter into miss on purpose mode. Units will aim to the nearest enemy unit but not precisely.
/** Instruct units to enter into dynamic accuracy/miss on purpose mode. Units will aim to the nearest enemy unit but not precisely.
* @param units (Optional) Array of units to apply the control to. If not provided, the operation will be completed on all selected units.
*/
missOnPurpose(units?: Unit[] | null): void;
Expand Down
8 changes: 4 additions & 4 deletions installer/olympus.iss
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ begin
Top := ScaleY(35);
Width := ScaleX(185);
Height := ScaleY(21);
TabOrder := 2;
TabOrder := 1;
end;
{ lblBluePassword }
Expand Down Expand Up @@ -380,7 +380,7 @@ begin
Top := ScaleY(91);
Width := ScaleX(185);
Height := ScaleY(21);
TabOrder := 2;
TabOrder := 3;
end;
Expand All @@ -407,7 +407,7 @@ begin
Height := ScaleY(21);
Text := '3000';
OnKeyPress := @AcceptNumbersOnlyKeyPress;
TabOrder := 3;
TabOrder := 4;
end;
{ lblBackendPort }
Expand All @@ -433,7 +433,7 @@ begin
Height := ScaleY(21);
Text := '3001';
OnKeyPress := @AcceptNumbersOnlyKeyPress;
TabOrder := 4;
TabOrder := 5;
end;
{ lblPasswordInstructions }
Expand Down

0 comments on commit f56bd51

Please sign in to comment.