Skip to content

Commit

Permalink
Per default use system font size
Browse files Browse the repository at this point in the history
  • Loading branch information
sthiele committed Jun 27, 2024
1 parent aa147e3 commit 714d778
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cnapy/appdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from optlang.symbolics import Zero
from optlang_enumerator.cobra_cnapy import CNApyModel
from qtpy.QtCore import Qt, Signal, QObject
from qtpy.QtGui import QColor
from qtpy.QtGui import QColor, QFont
from qtpy.QtWidgets import QMessageBox

# from straindesign.parse_constr import linexprdict2str # indirectly leads to a JVM restart exception?!?
Expand All @@ -41,8 +41,10 @@ def __init__(self):
self.scen_color_good = QColor(130, 190, 0)
self.scen_color_warn = QColor(255, 200, 0)
self.scen_color_bad = Qt.red

self.font_size = 9

font = QFont()
font.setFamily(font.defaultFamily())
self.font_size = font.pointSize()
self.box_width = 80
self.box_height = 40
self.comp_color = QColor(0, 170, 255)
Expand Down

0 comments on commit 714d778

Please sign in to comment.