blob: 0cfcf0aaca2d7f97ad2156c9039ddfe1f6474c90 (
plain)
1
2
3
4
5
6
7
8
9
|
from defconQt.tools.baseButton import BaseButton
class RemoveOverlapButton(BaseButton):
name = "Remove Overlap"
iconPath = ":resources/union.svg"
def clicked(self):
self._glyph.removeOverlap()
|