Skip to content

Commit

Permalink
- apparently .net framework 4.5.2 is more strict regarding binding di…
Browse files Browse the repository at this point in the history
…rections of readonly proerties. this commit takes care of that.
  • Loading branch information
sebingel committed Sep 22, 2016
1 parent 645992e commit 42691f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Achievements/AchievementViews/View/AchievementControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ limitations under the License.-->
<ColumnDefinition Width="*" MaxWidth="250" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<ProgressBar Grid.Row="0" Grid.Column="0" Value="{Binding Progress}" Margin="5" Height="10"
<ProgressBar Grid.Row="0" Grid.Column="0" Value="{Binding Progress, Mode=OneWay}" Margin="5" Height="10"
Visibility="{Binding ProgressVisibility}"
Style="{StaticResource ProgressBarStyle}" />
<TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding ProgressString}" Foreground="#B0B0B0"
Expand Down
4 changes: 2 additions & 2 deletions Achievements/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.2")]
[assembly: AssemblyFileVersion("2.0.2")]
[assembly: AssemblyVersion("2.0.2.1")]
[assembly: AssemblyFileVersion("2.0.2.1")]

// CA enforced Rules
[assembly: NeutralResourcesLanguage("en")]
Expand Down

0 comments on commit 42691f9

Please sign in to comment.