File tree 2 files changed +4
-4
lines changed
arduino-ide-extension/src/browser/library
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<
128
128
'arduino/library/installWithoutDependencies' ,
129
129
'Install without dependencies'
130
130
) ,
131
- nls . localize ( 'arduino/library/installAll' , 'Install all ' ) ,
131
+ nls . localize ( 'arduino/library/installAll' , 'Install All ' ) ,
132
132
] ,
133
133
maxWidth : 740 , // Aligned with `settings-dialog.css`.
134
134
} ) . open ( ) ;
135
135
136
136
if ( result ) {
137
137
const { response } = result ;
138
- if ( response === 1 ) {
138
+ if ( response === 0 ) {
139
139
// Current only
140
140
installDependencies = false ;
141
- } else if ( response === 2 ) {
141
+ } else if ( response === 1 ) {
142
142
// All
143
143
installDependencies = true ;
144
144
}
Original file line number Diff line number Diff line change 255
255
"arduinoLibraries" : " Arduino libraries" ,
256
256
"contributedLibraries" : " Contributed libraries" ,
257
257
"include" : " Include Library" ,
258
- "installAll" : " Install all " ,
258
+ "installAll" : " Install All " ,
259
259
"installLibraryDependencies" : " Install library dependencies" ,
260
260
"installMissingDependencies" : " Would you like to install all the missing dependencies?" ,
261
261
"installOneMissingDependency" : " Would you like to install the missing dependency?" ,
You can’t perform that action at this time.
0 commit comments