mirror of https://github.com/KLayout/klayout.git
With this change it is possible to bind signals to functions
accepting less arguments. For example:
def triggered():
...
b = pya.QPushButton()
b.clicked(triggered)
b.emit_clicked(True)
wasn't working before since triggered() gets one parameter
(checked) and the call fails. Now, additional parameters are
ignored.
|
||
|---|---|---|
| .. | ||
| basic.py | ||
| dbLayoutTest.py | ||
| dbPCells.py | ||
| dbRegionTest.py | ||
| qtbinding.py | ||
| tlTest.py | ||