|
@@ -150,7 +150,7 @@ class NameButtons(QWidget):
|
150
|
150
|
|
151
|
151
|
ps = Person.get_all(True)
|
152
|
152
|
# num_columns = round(len(ps) / 10) + 1
|
153
|
|
- num_columns = min(5, ceil(sqrt(len(ps))))
|
|
153
|
+ num_columns = min(4, ceil(sqrt(len(ps))))
|
154
|
154
|
|
155
|
155
|
if self.layout:
|
156
|
156
|
LOG.debug("Removing %s widgets for rebuild", self.layout.count())
|
|
@@ -432,7 +432,7 @@ def main() -> None:
|
432
|
432
|
# Enlarge font size
|
433
|
433
|
font = app.font()
|
434
|
434
|
size = font.pointSize()
|
435
|
|
- font.setPointSize(size * 1.5)
|
|
435
|
+ font.setPointSize(size * 1.25)
|
436
|
436
|
app.setFont(font)
|
437
|
437
|
|
438
|
438
|
# Test connectivity
|