We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e27cbd2 commit 5b65848Copy full SHA for 5b65848
arduino-ide-extension/src/browser/contributions/debug.ts
@@ -56,9 +56,9 @@ interface StartDebugParams {
56
*/
57
readonly programmer?: string;
58
/**
59
- * Custom progress message to use when getting the debug information from the CLI.
+ * Custom progress title to use when getting the debug information from the CLI.
60
61
- readonly message?: string;
+ readonly title?: string;
62
}
63
type StartDebugResult = boolean;
64
@@ -327,7 +327,7 @@ export class Debug extends SketchContribution {
327
sketchPath,
328
launchConfigsDirPath,
329
programmer: boardsData.selectedProgrammer?.id,
330
- message: nls.localize(
+ title: nls.localize(
331
'arduino/debug/getDebugInfo',
332
'Getting debug info...'
333
),
0 commit comments