bigbigmdm / IMSProg

IMSProg - software for CH341A-based programmers to work with I2C, SPI and MicroWire EEPROM/Flash chips
https://antenna-dvb-t2.ru/IMSProg.php
GNU General Public License v3.0
196 stars 34 forks source link

Very large font in some distributions #100

Open bigbigmdm opened 1 month ago

bigbigmdm commented 1 month ago

Distribution

REDOS 7.3.4

Architecture

amd64

Kernel version

No response

IMSProg version

Version 1.3.9

Bug description

In one of the RedHat based distributions I saw incorrect display of national text characters in the programme:

Steps to reproduce

No response

Expected behavior

No response

Additional information

The following edits had to be made for correction:

IMSProg_programmer/main.cpp

- 21     QFont font("Monospace");
+ 21     QFont font("OpenSans");
- 23     font.setPointSize(12);
+ 23     font.setPointSize(11);

MSProg_programmer/mainwindow.cpp

- 109     heFont = QFont("Monospace", 10);
+ 109     heFont = QFont("DejaVu Sans Mono", 10);

No such problems are observed with the same IMSProg distribution on Fedora 38.

What is the situation with fonts in different distributions?