System Information
Operating system: Ubuntu 19.10
Graphics card: Nvidia 2060
Blender Version
Broken: 2.82
Worked: not sure if ever
Printing out the content of the clipboard from a timer blocks keyboard input after a while on linux.
basically all descriptions from T73507 can call the bug.
Exact steps for others to reproduce the error
Install the following max-stripped add-on, open some file, copy some text into your clipboard from anywhere, try to grab with G key objects around until you get stuck. Should happen after a few seconds.
I used this file provided by someone in T73507 to reproduce:
exact test 'addon' code:
import bpy
@bpy.app.handlers.persistent
def check_bug():
print(bpy.context.window_manager.clipboard)
return .01 # this value is quite extreme, it 'works' also with 0.1 but takes longer to take effect
def register():
bpy.app.timers.register(check_bug, persistent=True)
}