Skip to content

Commit

Permalink
Fix #15790
Browse files Browse the repository at this point in the history
  • Loading branch information
deltakosh committed Nov 8, 2024
1 parent 155e160 commit dfd9fbd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/dev/gui/src/2D/controls/inputText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,13 @@ export class InputText extends Control {
this._markAsDirty();
}

/**
* Allow the user to select all text
*/
public selectAllText() {
this._selectAllText();
}

/**
* Handles the keyboard event
* @param evt Defines the KeyboardEvent
Expand Down

0 comments on commit dfd9fbd

Please sign in to comment.