Skip to content

Commit

Permalink
give more space for wider date formats
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Oct 6, 2021
1 parent fa8199c commit f5b10c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elevenclock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ def __init__(self, w, h, dpix, dpiy, fontSizeMultiplier):
h = 48*dpiy
except:
pass
self.move(w-(80*dpix), h-(48*dpiy))
self.resize(72*dpix, 48*dpiy)
self.move(w-(88*dpix), h-(48*dpiy))
self.resize(80*dpix, 48*dpiy)
self.setStyleSheet(f"background-color: rgba(0, 0, 0, 0.01);margin: 5px; border-radius: 5px; ")#font-size: {int(12*fontSizeMultiplier)}px;")
self.font: QFont = QFont("Segoe UI Variable")
self.font.setPointSizeF(9)
Expand Down

0 comments on commit f5b10c1

Please sign in to comment.