Possible bugfix: change on Aug 20th added this code to filesel.c:

if (!G.relbase_valid) {
    okee("You have to save the .blend file before using relative paths! Using absolute path instead.");
    sfile->flag & ~FILE_STRINGCODE;
  }

I assume the code should read:

    sfile->flag &= ~FILE_STRINGCODE;

Andrea: please double-check.
This commit is contained in:
Ken Hughes 2006-08-29 23:24:57 +00:00
parent 9eae6278fc
commit 069d8c45dc

@ -1523,7 +1523,7 @@ static void filesel_execute(SpaceFile *sfile)
if(sfile->flag & FILE_STRINGCODE) {
if (!G.relbase_valid) {
okee("You have to save the .blend file before using relative paths! Using absolute path instead.");
sfile->flag & ~FILE_STRINGCODE;
sfile->flag &= ~FILE_STRINGCODE;
}
else {
BLI_makestringcode(G.sce, name);