Minor changes

This commit is contained in:
Loïc Guégan 2024-09-17 14:42:00 +02:00
parent 08c3a724ee
commit 171fbd28a3

View file

@ -23,6 +23,7 @@ class EvtDrawerScene(QGraphicsScene):
super().__init__(None)
self.calState=calState
self.env=env
self.eventsRect=list()
def drawForeground(self, painter, rect):
origXF, origYF, widthF, heightF = rect.getRect()
@ -46,7 +47,8 @@ class EvtDrawerScene(QGraphicsScene):
eventHeight=80
colorWidth=20
for e in self.env.listEventsOn(2024,10,1):
painter.drawRect(x+po,y+po,width-po*2,eventHeight-po*2)
r=QRect(x+po,y+po,width-po*2,eventHeight-po*2)
painter.drawRect(r)
class EvtDrawer():