Browse Source
Merge pull request #3236 from jo-so/gui-hires
paytoedit: Calculate height depending on font's line height
3.0.x
ThomasV
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
gui/qt/paytoedit.py
|
|
@ -186,8 +186,9 @@ class PayToEdit(ScanQRTextEdit): |
|
|
|
self.update_size() |
|
|
|
|
|
|
|
def update_size(self): |
|
|
|
lineHeight = QFontMetrics(self.document().defaultFont()).height() |
|
|
|
docHeight = self.document().size().height() |
|
|
|
h = docHeight*17 + 11 |
|
|
|
h = docHeight * lineHeight + 11 |
|
|
|
if self.heightMin <= h <= self.heightMax: |
|
|
|
self.setMinimumHeight(h) |
|
|
|
self.setMaximumHeight(h) |
|
|
|