Skip to content

Commit

Permalink
remove print()
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Oct 8, 2021
1 parent aa3fa2e commit c6aa343
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions elevenclock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ def __init__(self, text):


def enterEvent(self, event: QEvent) -> None:
print("enter")
geometry: QRect = self.getTextUsedSpaceRect()
self.showBackground.setStartValue(.001)
self.showBackground.setEndValue(self.bgopacity) # Not 0 to prevent white flashing on the border
Expand All @@ -224,7 +223,6 @@ def enterEvent(self, event: QEvent) -> None:
return super().enterEvent(event)

def leaveEvent(self, event: QEvent) -> None:
print("exit")
self.hideBackground.setStartValue(self.bgopacity)
self.hideBackground.setEndValue(.001) # Not 0 to prevent white flashing on the border
self.hideBackground.start()
Expand Down

0 comments on commit c6aa343

Please sign in to comment.