Skip to content

Commit 5b65848

Browse files
author
Akos Kitta
committed
fix: progress title
1 parent e27cbd2 commit 5b65848

File tree

1 file changed

+3
-3
lines changed
  • arduino-ide-extension/src/browser/contributions

1 file changed

+3
-3
lines changed

Diff for: arduino-ide-extension/src/browser/contributions/debug.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ interface StartDebugParams {
5656
*/
5757
readonly programmer?: string;
5858
/**
59-
* Custom progress message to use when getting the debug information from the CLI.
59+
* Custom progress title to use when getting the debug information from the CLI.
6060
*/
61-
readonly message?: string;
61+
readonly title?: string;
6262
}
6363
type StartDebugResult = boolean;
6464

@@ -327,7 +327,7 @@ export class Debug extends SketchContribution {
327327
sketchPath,
328328
launchConfigsDirPath,
329329
programmer: boardsData.selectedProgrammer?.id,
330-
message: nls.localize(
330+
title: nls.localize(
331331
'arduino/debug/getDebugInfo',
332332
'Getting debug info...'
333333
),

0 commit comments

Comments
 (0)