Allow save only after modification

This commit is contained in:
Pekka Kauppila 2014-04-11 15:23:07 +03:00
Родитель d6561630ee
Коммит adbc456302
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -279,6 +279,8 @@ namespace ImageSequencer
}
await Render(_animationIndex, true);
_saveButton.IsEnabled = true;
}
private async void FrameButton_Click(object sender, EventArgs e)
@ -298,6 +300,8 @@ namespace ImageSequencer
}
await Render(_animationIndex, true);
_saveButton.IsEnabled = true;
}
private void SaveButton_Click(object sender, EventArgs e)
@ -338,6 +342,7 @@ namespace ImageSequencer
}
SetControlsEnabled(true);
_saveButton.IsEnabled = false;
}
private void ShowProgressIndicator(String text)
@ -380,6 +385,8 @@ namespace ImageSequencer
AnimatedAreaIndicator.Height = rect.Height;
_animatedArea.Rect = rect;
_saveButton.IsEnabled = true;
}
}