Fix T38806: Proxy file changes don't update until Blender's restart

This commit is contained in:
Sergey Sharybin 2014-02-25 13:49:38 +06:00
parent 44e53c82d2
commit bf547a1983
Notes: blender-bot 2023-02-14 11:08:31 +01:00
Referenced by issue #38806, Proxy file changes don't update until Blender's restart
1 changed files with 6 additions and 0 deletions

View File

@ -76,6 +76,8 @@ EnumPropertyItem sequence_modifier_type_items[] = {
#include "WM_api.h"
#include "WM_types.h"
#include "IMB_imbuf.h"
typedef struct SequenceSearchData {
Sequence *seq;
void *data;
@ -601,6 +603,10 @@ static void rna_Sequence_proxy_filepath_set(PointerRNA *ptr, const char *value)
{
StripProxy *proxy = (StripProxy *)(ptr->data);
BLI_split_dirfile(value, proxy->dir, proxy->file, sizeof(proxy->dir), sizeof(proxy->file));
if (proxy->anim) {
IMB_free_anim(proxy->anim);
proxy->anim = NULL;
}
}
static void rna_Sequence_proxy_filepath_get(PointerRNA *ptr, char *value)