File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
arduino-ide-extension/src/browser/boards Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -237,6 +237,16 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
237237 ) ;
238238
239239 const actions : AutoInstallPromptActions = [
240+ {
241+ key : manualInstall ,
242+ handler : ( ) => {
243+ this . boardsManagerFrontendContribution
244+ . openView ( { reveal : true } )
245+ . then ( ( widget ) =>
246+ widget . refresh ( candidate . name . toLocaleLowerCase ( ) )
247+ ) ;
248+ } ,
249+ } ,
240250 {
241251 isAcceptance : true ,
242252 key : yes ,
@@ -250,16 +260,6 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
250260 } ) ;
251261 } ,
252262 } ,
253- {
254- key : manualInstall ,
255- handler : ( ) => {
256- this . boardsManagerFrontendContribution
257- . openView ( { reveal : true } )
258- . then ( ( widget ) =>
259- widget . refresh ( candidate . name . toLocaleLowerCase ( ) )
260- ) ;
261- } ,
262- } ,
263263 ] ;
264264
265265 return actions ;
You can’t perform that action at this time.
0 commit comments