10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | # a streamripper kill switch.
import action
from config import log, conf
# Stop button
class record_stop(object):
module = __name__
# button + hook
def __init__(self, parent):
btn = parent.stop
btn.show()
btn.set_property("visible", True)
btn.set_property("visible_horizontal", True) |
|
| 10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 | # a streamripper kill switch.
import action
from config import log, conf
# Stop button
class record_stop(object):
module = 'record_stop'
# button + hook
def __init__(self, parent):
btn = parent.stop
btn.show()
btn.set_property("visible", True)
btn.set_property("visible_horizontal", True) |