Skip to content

Commit

Permalink
Merge pull request #19183 from unoplatform/mergify/bp/release/stable/…
Browse files Browse the repository at this point in the history
…5.6/pr-19171

fix(hr): Update HR conditions (backport #19171)
  • Loading branch information
jeromelaban authored Jan 10, 2025
2 parents 47ec2a4 + f664ce4 commit e25f346
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 e25f346

Please sign in to comment.