Fix incorrect execution order
This commit is contained in:
parent
cad81ce7f1
commit
7241a265e6
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue