Skip to content

Commit

Permalink
ActionMessage.UpdateAvailability is now virtual. Resolves #134
Browse files Browse the repository at this point in the history
  • Loading branch information
nigel-sampson committed Mar 10, 2015
1 parent a64c06c commit aee507b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Caliburn.Micro.Platform/ActionMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ protected override void Invoke(object eventArgs) {
/// <summary>
/// Forces an update of the UI's Enabled/Disabled state based on the the preconditions associated with the method.
/// </summary>
public void UpdateAvailability() {
public virtual void UpdateAvailability() {
if (context == null)
return;

Expand Down

0 comments on commit aee507b

Please sign in to comment.