diff -r 139bd30c52c2 -r fb77bff32621 eric6/MicroPython/UF2FlashDialog.py --- a/eric6/MicroPython/UF2FlashDialog.py Mon Mar 22 19:31:18 2021 +0100 +++ b/eric6/MicroPython/UF2FlashDialog.py Tue Mar 23 18:39:35 2021 +0100 @@ -370,6 +370,7 @@ " flash button.</li>" "</ol>" ), + "show_all": True, "firmware": "CircuitPython", }, @@ -402,6 +403,7 @@ " flash button.</li>" "</ol>" ), + "show_all": False, "firmware": "CircuitPython", }, @@ -434,6 +436,7 @@ " flash button.</li>" "</ol>" ), + "show_all": True, "firmware": "MicroPython / CircuitPython", }, } @@ -639,7 +642,11 @@ "</p>" ) for boardType in SupportedUF2Boards: - htmlText += "<hr/>" + SupportedUF2Boards[boardType]["instructions"] + if SupportedUF2Boards[boardType]["show_all"]: + htmlText += ( + "<hr/>" + + SupportedUF2Boards[boardType]["instructions"] + ) self.infoEdit.setHtml(htmlText) def __showSpecificInstructions(self, devices):