Skip to content

Instantly share code, notes, and snippets.

View aspadm's full-sized avatar
:octocat:

Asp Adm (Alexey Kirillov) aspadm

:octocat:
View GitHub Profile
@aspadm
aspadm / flowlayout.py
Last active May 6, 2020 15:13 — forked from Cysu/gist:7461066
Python: PyQt5 FlowLayout
from PyQt5 import QtCore, QtWidgets
class FlowLayout(QtWidgets.QLayout):
def __init__(self, parent=None, margin=0, spacing=-1):
super().__init__(parent)
if parent is not None:
self.setContentsMargins(margin)
self.setSpacing(spacing)