Skip to content

Commit

Permalink
add version number to setWindowTitle up font size for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Furtif committed Jun 12, 2023
1 parent be7ba80 commit 3196eca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def __init__(self, parent=None):
self.sdsready = False
self.ecunamemap = {}
self.plugins = {}
self.setWindowTitle(_("DDT4All"))
self.setWindowTitle(_("DDT4All") + " " + __version__)
self.ecu_scan = ecu.Ecu_scanner()
self.ecu_scan.qapp = app
options.ecu_scanner = self.ecu_scan
Expand Down Expand Up @@ -1268,7 +1268,7 @@ def __init__(self):
self.portcount = -1
self.usb()

self.setWindowTitle("DDT4All")
self.setWindowTitle(_("DDT4All") + " " + __version__)
self.setIcon()

def setIcon(self):
Expand Down Expand Up @@ -1481,7 +1481,7 @@ def demoMode(self):
options.simultation_mode = True
app = widgets.QApplication(sys.argv)

fsize = 9
fsize = 10
fname = "Tahoma"

if sys.platform[:3] == "dar":
Expand Down

0 comments on commit 3196eca

Please sign in to comment.