Commit 27e90274 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Set the action taken in the ProcessComponents and InstallFiles actions.

parent 8722d0c4
......@@ -2993,6 +2993,7 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
else
MSIREG_DeleteUserDataComponentKey(comp->ComponentId, NULL);
}
comp->Action = comp->ActionRequest;
/* UI stuff */
uirow = MSI_CreateRecord(3);
......
......@@ -98,6 +98,8 @@ static void schedule_install_files(MSIPACKAGE *package)
ui_progress(package,2,file->FileSize,0,0);
file->state = msifs_skipped;
}
else
file->Component->Action = INSTALLSTATE_LOCAL;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment