Skip to content

Commit

Permalink
[Android] Fix/Avoid issue with sidemenuoptions.xxx.enabled flag being…
Browse files Browse the repository at this point in the history
… clobbered. (wix#5459)

FIx SideMenu options not being merged correctly with other options.
  • Loading branch information
Royce authored and vshkl committed Feb 5, 2020
1 parent d1e5623 commit fb388d3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public void mergeWith(SideMenuRootOptions other) {
right.mergeWith(other.right);
}

public void mergeWithDefault(SideMenuRootOptions sideMenuRootOptions) {

public void mergeWithDefault(SideMenuRootOptions defaultOptions) {
left.mergeWithDefault(defaultOptions.left);
right.mergeWithDefault(defaultOptions.right);
}
}

0 comments on commit fb388d3

Please sign in to comment.