| 43 | |
| 44 | # pylint: disable=too-few-public-methods |
| 45 | class MyHeaderView(QHeaderView): |
| 46 | def __init__(self, parent=None): |
| 47 | super().__init__(Qt.Horizontal, parent) |
| 48 | |
| 49 | def sizeHint(self): |
| 50 | s = super().sizeHint() |
| 51 | s.setHeight(s.height() * 3) |
| 52 | return s |
| 53 | |
| 54 | |
| 55 | if __name__ == '__main__': |