diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-04-16 21:26:44 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-04-16 21:26:44 (GMT) |
commit | 7fea51fbc1a9bc9259998c61618e4aa6624056f2 (patch) | |
tree | 2728ee1cb7ee69eb18fdcab48f8ad28b475dda4e /plugins/pychrysalide | |
parent | 21760f7f0c1aed518f95b095a304e808e18a0f8c (diff) |
Fix the non-UI Python bindings by initializing a missing pointer.gtk4
Diffstat (limited to 'plugins/pychrysalide')
-rw-r--r-- | plugins/pychrysalide/core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/pychrysalide/core.c b/plugins/pychrysalide/core.c index fd4a11f..0fea9c4 100644 --- a/plugins/pychrysalide/core.c +++ b/plugins/pychrysalide/core.c @@ -707,6 +707,7 @@ PyMODINIT_FUNC PyInit_pychrysalide(void) details.standalone = _standalone; + details.add_extra = NULL; details.populate_extra = NULL; details.create_self = g_pychrysalide_plugin_new; |