Skip to content

Commit cb9f898

Browse files
committed
inputMethods.ts: str?: string added to delete and backbtn for Keyboard
1 parent 9add522 commit cb9f898

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inputMethods.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ namespace microgui {
338338
private readonly MAX_TEXT_LENGTH = 22;
339339

340340
private foregroundColor: number;
341-
private passedDeleteFn: () => void;
341+
private passedDeleteFn: (str?: string) => void;
342342
/** The passed Back Btn function is needed since its given to the constructor, but used by startup() */
343-
private passedBackBtn: () => void;
343+
private passedBackBtn: (str?: string) => void;
344344

345345
constructor(opts: {
346346
app: AppInterface,

0 commit comments

Comments
 (0)