Pythonista-Issues
Pythonista-Issues copied to clipboard
console.set_idle_timer_disabled broken in v 3.3 (330025)
This program immediately crashes the app now:
import console
console.set_idle_timer_disabled(True)
omz has posted a workaround for this on the forums, by the way: https://forum.omz-software.com/topic/5295/new-beta-for-pythonista-3-3/95
Sorry about the issue with
console.set_idle_timer_disabled. Please use this workaround for now:import console def fix_set_idle_timer_disabled(flag=True): from objc_util import on_main_thread on_main_thread(console.set_idle_timer_disabled)(flag)