Skip to content

Commit

Permalink
Merge pull request #19171 from unoplatform/dev/dr/hr-no-create-new
Browse files Browse the repository at this point in the history
fix(hr): Update HR conditions
  • Loading branch information
dr1rrb authored Jan 9, 2025
2 parents c26f0b2 + 0692217 commit fa48746
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ private void CheckMetadataUpdatesSupport()

var vsEnabled = isForcedMetadata
|| (buildingInsideVisualStudio && isSkia)
|| (buildingInsideVisualStudio && isWasm);
|| (buildingInsideVisualStudio && isWasm)
|| (buildingInsideVisualStudio && Debugger.IsAttached && OperatingSystem.IsAndroid())
|| (buildingInsideVisualStudio && Debugger.IsAttached && OperatingSystem.IsIOS());


_supportsMetadataUpdates = devServerEnabled || vsEnabled;
_serverMetadataUpdatesEnabled = devServerEnabled;
Expand Down

0 comments on commit fa48746

Please sign in to comment.