src/eric7/MicroPython/Devices/STLinkDevices.py

branch
eric7
changeset 10933
95a15b70f7bb
parent 10806
2f6df822e3b9
child 11006
a671918232f3
--- a/src/eric7/MicroPython/Devices/STLinkDevices.py	Fri Sep 27 11:00:27 2024 +0200
+++ b/src/eric7/MicroPython/Devices/STLinkDevices.py	Fri Sep 27 17:27:11 2024 +0200
@@ -379,6 +379,10 @@
                         windowTitle=self.tr("Flash MicroPython Firmware"),
                         showInput=False,
                         combinedOutput=True,
+                        monospacedFont=Preferences.getEditorOtherFonts(
+                            "MonospacedFont"
+                        ),
+                        encoding=Preferences.getSystem("IOEncoding"),
                     )
                     res = dlg.startProcess(program, args)
                     if res:
@@ -397,6 +401,8 @@
             dlg = EricProcessDialog(
                 self.tr("'st-info' Output"),
                 self.tr("STLink Device Information"),
+                monospacedFont=Preferences.getEditorOtherFonts("MonospacedFont"),
+                encoding=Preferences.getSystem("IOEncoding"),
             )
             res = dlg.startProcess(program, ["--probe"])
             if res:

eric ide

mercurial