File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
arduino-ide-extension/src/browser/library Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -128,17 +128,17 @@ export class LibraryListWidget extends ListWidget<
128128 'arduino/library/installWithoutDependencies' ,
129129 'Install without dependencies'
130130 ) ,
131- nls . localize ( 'arduino/library/installAll' , 'Install all ' ) ,
131+ nls . localize ( 'arduino/library/installAll' , 'Install All ' ) ,
132132 ] ,
133133 maxWidth : 740 , // Aligned with `settings-dialog.css`.
134134 } ) . open ( ) ;
135135
136136 if ( result ) {
137137 const { response } = result ;
138- if ( response === 1 ) {
138+ if ( response === 0 ) {
139139 // Current only
140140 installDependencies = false ;
141- } else if ( response === 2 ) {
141+ } else if ( response === 1 ) {
142142 // All
143143 installDependencies = true ;
144144 }
Original file line number Diff line number Diff line change 255255 "arduinoLibraries" : " Arduino libraries" ,
256256 "contributedLibraries" : " Contributed libraries" ,
257257 "include" : " Include Library" ,
258- "installAll" : " Install all " ,
258+ "installAll" : " Install All " ,
259259 "installLibraryDependencies" : " Install library dependencies" ,
260260 "installMissingDependencies" : " Would you like to install all the missing dependencies?" ,
261261 "installOneMissingDependency" : " Would you like to install the missing dependency?" ,
You can’t perform that action at this time.
0 commit comments