Skip to content

Commit

Permalink
[FZEditor]don't return error on empty files (#15819)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeraphimaZykova authored Jan 28, 2022
1 parent b98be49 commit 814c8e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ public ParsingResult ParseLayoutTemplates()
}
}

return new ParsingResult(false, FancyZonesEditor.Properties.Resources.Error_Parsing_Layout_Templates_Message);
return new ParsingResult(true);
}

public ParsingResult ParseCustomLayouts()
Expand Down Expand Up @@ -670,7 +670,7 @@ public ParsingResult ParseCustomLayouts()
}
}

return new ParsingResult(false, FancyZonesEditor.Properties.Resources.Error_Parsing_Custom_Layouts_Message);
return new ParsingResult(true);
}

public void SerializeAppliedLayouts()
Expand Down

0 comments on commit 814c8e3

Please sign in to comment.