Fix incorrect execution order

This commit is contained in:
Manuel Thalmann 2024-03-22 02:16:21 +01:00
parent cad81ce7f1
commit 7241a265e6

View file

@ -34,8 +34,8 @@ namespace DT3 {
get { return size; }
set
{
NotifyPropertyChanged();
size = value;
NotifyPropertyChanged();
}
}
@ -43,8 +43,8 @@ namespace DT3 {
get { return time; }
set
{
NotifyPropertyChanged();
time = value;
NotifyPropertyChanged();
}
}
@ -52,8 +52,8 @@ namespace DT3 {
get { return url; }
set
{
NotifyPropertyChanged();
url = value;
NotifyPropertyChanged();
}
}