diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index 318147e8c25..f7971ed1b64 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -511,6 +511,13 @@ static void wm_file_read_post(bContext *C, const bool is_startup_file, const boo } BPY_python_reset(C); addons_loaded = true; + + if (!G.background) { + /* Load the keymap from Python, otherwise we get an empty keymap. */ + BPY_execute_string( + C, (const char *[]){"bpy", NULL}, + "bpy.utils.keyconfig_set(bpy.utils.preset_find('blender', 'keyconfig'))"); + } } } else {