mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
14 lines
457 B
Python
14 lines
457 B
Python
from PySide2.QtGui import QFont
|
|
from PySide2.QtWidgets import QGraphicsScene
|
|
|
|
import qt_ui.uiconstants as CONST
|
|
|
|
|
|
class QLiberationScene(QGraphicsScene):
|
|
|
|
def __init__(self, parent):
|
|
super().__init__(parent)
|
|
item = self.addText("Go to \"File/New Game\" to setup a new campaign or go to \"File/Open\" to load an existing save game.",
|
|
CONST.FONT_PRIMARY)
|
|
item.setDefaultTextColor(CONST.COLORS["white"])
|