Bastien Montagne mont29
  • Amsterdam, The Netherlands
  • Blender developer, mainly focused on 'Core' module.

  • Joined on 2010-10-07
Bastien Montagne commented on pull request blender/blender#105380 2023-03-02 18:58:44 +01:00
WM: Fix invalid memory access in wmTimer handling code.

Ah OK I see now, done.

Bastien Montagne pushed to F-wmtimer-fix at mont29/blender 2023-03-02 18:58:21 +01:00
2332bc4e54 WM: Fix invalid memory access in wmTimer handling code.
Bastien Montagne pushed to F-wmtimer-fix at mont29/blender 2023-03-02 18:54:23 +01:00
3b608183e1 WM: Fix invalid memory access in wmTimer handling code.
Bastien Montagne pushed to F-wmtimer-fix at mont29/blender 2023-03-02 18:52:08 +01:00
87ef63b1ec WM: Fix invalid memory access in wmTimer handling code.
Bastien Montagne commented on pull request blender/blender#105380 2023-03-02 18:50:39 +01:00
WM: Fix invalid memory access in wmTimer handling code.

Fair point, done.

Would keep MEM_freeN(wt->customdata) together with the actual timer freeing though, sounds safer to me?

Bastien Montagne commented on issue blender/blender#105160 2023-03-02 18:05:02 +01:00
Regression: Crash when user opens directory instead of file on USD import

NOTE: Even though the underlying issue leading to the crash is going to be fixed soon, think this kind of error (invalid path) should also be detected by the operator itself, instead of starting a…

Bastien Montagne created pull request blender/blender#105380 2023-03-02 18:02:31 +01:00
WM: Fix invalid memory access in wmTimer handling code.
Bastien Montagne created branch F-wmtimer-fix in mont29/blender 2023-03-02 18:00:56 +01:00
Bastien Montagne pushed to F-wmtimer-fix at mont29/blender 2023-03-02 18:00:56 +01:00
83edd41ca6 WM: Fix invalid memory access in wmTimer handling code.
Bastien Montagne deleted branch F-link-override-basics from mont29/blender 2023-03-02 17:22:56 +01:00
Bastien Montagne merged pull request blender/blender#104746 2023-03-02 17:22:54 +01:00
Add a basic support to BKE library linking code to generate liboverrides.
Bastien Montagne pushed to main at blender/blender 2023-03-02 17:22:53 +01:00
ff6ce25926 Add a basic support to BKE library linking code to generate liboverrides.
Bastien Montagne pushed to blender-v3.5-release at mont29/blender 2023-03-02 16:41:15 +01:00
00ca7c5221 Fix #105109: Pick selection with multi object edit
422f3d0b0f Fix #105278: IDProperty UI missing library overridable toggle
Compare 2 commits »
Bastien Montagne pushed to main at mont29/blender 2023-03-02 16:41:07 +01:00
1d3a2fb5bb Merge branch 'blender-v3.5-release'
422f3d0b0f Fix #105278: IDProperty UI missing library overridable toggle
fa044c453f Cleanup: Unused fields and API for tracks map
81b56f8bbc Cleanup: Refactor BKE_nlatrack_add to multiple methods to handle adding a new NLA track to the track list. Insert before, after, head, and tail
12854fdfd6 Fix: Frame Channels fails when no keys in range
Compare 5 commits »
Bastien Montagne pushed to F-link-override-basics at mont29/blender 2023-03-02 16:16:34 +01:00
4a22cb4557 Add a basic support to BKE library linking code to generate liboverrides.
Bastien Montagne pushed to F-link-override-basics at mont29/blender 2023-03-02 16:13:04 +01:00
bb60ef93f6 Add a basic support to BKE library linking code to generate liboverrides.
f97542e5a2 Merge branch 'blender-v3.5-release'
9e5275791f Fix #105343: id.make_local() doesn't work for overridden data.
4de2cf4136 Merge branch 'blender-v3.5-release'
2eeec49640 Fix #105339: grease pencil selection can toggle object selection
Compare 478 commits »
Bastien Montagne commented on issue blender/blender#105272 2023-03-02 15:47:25 +01:00
Fix/Refactor NLA Track library override

For context, systematically setting NLATRACK_OVERRIDELIBRARY_LOCAL is done to avoid as much Editor code as possible to need to be aware that it's working on liboverride data. The idea is…