Skip to content

Commit

Permalink
[talentia/stable] Disable Control & Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
andivlad-talentia committed Feb 21, 2022
1 parent 624dba5 commit 1ab221b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,19 @@ If you still encounter any issues, please contact:
- the CSHTML5 team at: http://cshtml5.com/contact.aspx





# How to build talentia/stable

git reset --hard upstream/develop
Merge from: romanp/feature/optimization-dollarstring
git cherry-pick f0ac61c9d0a8298baff8f9c424d14c85d0e058b4 # fix usubscribe of clicks
git cherry-pick cb971941e016ebb902eee63ed387ef1f5d2dd884 # revert sync storyboarding, breaks search in CPM
git cherry-pick a79c9009444e22818697099ba4142f1c6350b35b # Disable margin Divs under CustomLayout

new commit:
- Add this to the Control class:
/// <summary>
/// CPM Has problems with custom layout in the grid
/// </summary>
internal override bool EnablePointerEventsCore => true;

- Update readme with this section
5 changes: 5 additions & 0 deletions src/Runtime/Runtime/System.Windows.Controls/Control.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ public Control()
/// </summary>
protected bool DisableBaseControlHandlingOfVisualStates = false;

/// <summary>
/// CPM Has problems with custom layout in the grid
/// </summary>
internal override bool EnablePointerEventsCore => true;

//-----------------------
// ISENABLED (OVERRIDE)
//-----------------------
Expand Down

0 comments on commit 1ab221b

Please sign in to comment.