feat: Add support for thumbnail inclusion in AI processing and enhance UI bindings
This commit is contained in:
parent
cb41c42bb5
commit
7e105e3738
9 changed files with 235 additions and 27 deletions
|
|
@ -49,6 +49,28 @@ public class AiSettingsViewModel : ViewModelBase
|
|||
}
|
||||
}
|
||||
|
||||
private bool _numberAiGpuOptionEnabled;
|
||||
public bool NumberAiGpuOptionEnabled
|
||||
{
|
||||
get => _numberAiGpuOptionEnabled;
|
||||
set
|
||||
{
|
||||
_numberAiGpuOptionEnabled = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _includeNumberAiThumbnails;
|
||||
public bool IncludeNumberAiThumbnails
|
||||
{
|
||||
get => _includeNumberAiThumbnails;
|
||||
set
|
||||
{
|
||||
_includeNumberAiThumbnails = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private string _faceExecutablePath = string.Empty;
|
||||
public string FaceExecutablePath
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue