File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
arduino-ide-extension/src/browser/contributions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ interface StartDebugParams {
56
56
*/
57
57
readonly programmer ?: string ;
58
58
/**
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.
60
60
*/
61
- readonly message ?: string ;
61
+ readonly title ?: string ;
62
62
}
63
63
type StartDebugResult = boolean ;
64
64
@@ -327,7 +327,7 @@ export class Debug extends SketchContribution {
327
327
sketchPath,
328
328
launchConfigsDirPath,
329
329
programmer : boardsData . selectedProgrammer ?. id ,
330
- message : nls . localize (
330
+ title : nls . localize (
331
331
'arduino/debug/getDebugInfo' ,
332
332
'Getting debug info...'
333
333
) ,
You can’t perform that action at this time.
0 commit comments