This commit is contained in:
Kseninia Mikhaylova 2024-10-15 15:19:34 +03:00
parent b906a1a04c
commit a35ef4a153
1 changed files with 1 additions and 11 deletions

View File

@ -3,17 +3,7 @@ from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QHBoxLayout
from PyQt5.QtCore import Qt from PyQt5.QtCore import Qt
from PyQt5.QtGui import QColor, QPalette from PyQt5.QtGui import QColor, QPalette
from gui.robot import ChangeRobot from gui.robot import ChangeRobot
from gui.status import Status
class Status(QWidget):
def __init__(self, **kwargs):
super().__init__()
self.initUI()
def initUI(self):
palette = self.palette()
palette.setColor(QPalette.Window, QColor(144, 238, 144)) # LightGreen
self.setAutoFillBackground(True)
self.setPalette(palette)
class RightPanel(QWidget): class RightPanel(QWidget):
def __init__(self, panels): def __init__(self, panels):