Skip to content

Commit 578206b

Browse files
committed
Fix update of user forms without binary
1 parent 8b779df commit 578206b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Core/UI/CodeExplorer/Commands/UpdateFromFileCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ protected override void ImportFiles(ICollection<string> filesToImport, IVBProjec
159159
components.Remove(component);
160160
}
161161

162-
if(documentFiles.Contains(filename) || filesWithoutRequiredBinariesWithoutBackupSolution.Contains(filename))
162+
if(documentFiles.Contains(filename) || filesWithoutRequiredBinaryButWithPossibilityToImportToExistingComponent.Contains(filename))
163163
{
164164
//We have to dispose the return value.
165165
using (components.ImportSourceFile(filename)) { }

0 commit comments

Comments
 (0)