Skip to content

Commit

Permalink
Add version number in window title
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Mar 2, 2023
1 parent 1abcee6 commit d697056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygellermann/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from qtpy import QtCore, QtGui, QtWidgets

from . import gellermann
from . import __version__, gellermann

import numpy as np
import qdarktheme # type: ignore
Expand All @@ -41,7 +41,7 @@ def __init__(self):
self._series = []
self._was_saved = False

self.setWindowTitle("PyGellermann")
self.setWindowTitle(f"PyGellermann {__version__}")
self.setMinimumWidth(500)

self._sequence_length_spinbox = QtWidgets.QSpinBox()
Expand Down

0 comments on commit d697056

Please sign in to comment.