From cd3fa69f736782d7d7d3af6449fe106a41e5dac2 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 7 Oct 2016 23:14:07 +0200 Subject: [PATCH] removes useless comment --- BookAStar/BookAStar/Behaviors/StarBehavior.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/BookAStar/BookAStar/Behaviors/StarBehavior.cs b/BookAStar/BookAStar/Behaviors/StarBehavior.cs index 8ad6a9b0..1a5460f6 100644 --- a/BookAStar/BookAStar/Behaviors/StarBehavior.cs +++ b/BookAStar/BookAStar/Behaviors/StarBehavior.cs @@ -164,10 +164,8 @@ namespace BookAStar.Behaviors void OnTapRecognizerTapped(object sender, EventArgs args) { - // TODO HACK: PropertyChange does not fire, if the value is not changed :-( bool currentIsStarred = (bool) GetValue(IsStarredProperty); SetValue(IsStarredProperty, !currentIsStarred); - // does not lead to the call of: OnIsStarredChanged(this,currentIsStarred,!currentIsStarred); } }