10 lines
229 B
Python
10 lines
229 B
Python
import photoboite.buttons
|
|
|
|
class Close(photoboite.buttons.Button):
|
|
def __init__(self, rect, config):
|
|
self.config = config
|
|
super(Close, self).__init__(rect)
|
|
|
|
def run(self):
|
|
self.config.deactivate()
|