2025-01-05 14:11:15 +00:00
|
|
|
using AIStudio.Settings.DataModel;
|
|
|
|
|
|
|
|
namespace AIStudio.Components.Settings;
|
|
|
|
|
|
|
|
public partial class SettingsPanelApp : SettingsPanelBase
|
|
|
|
{
|
|
|
|
private void UpdatePreviewFeatures(PreviewVisibility previewVisibility)
|
|
|
|
{
|
|
|
|
this.SettingsManager.ConfigurationData.App.PreviewVisibility = previewVisibility;
|
|
|
|
this.SettingsManager.ConfigurationData.App.EnabledPreviewFeatures = previewVisibility.FilterPreviewFeatures(this.SettingsManager.ConfigurationData.App.EnabledPreviewFeatures);
|
|
|
|
}
|
2025-05-02 09:50:14 +00:00
|
|
|
|
|
|
|
private async Task UpdateLangBehaviour(LangBehavior behavior)
|
|
|
|
{
|
|
|
|
this.SettingsManager.ConfigurationData.App.LanguageBehavior = behavior;
|
|
|
|
await this.MessageBus.SendMessage<bool>(this, Event.PLUGINS_RELOADED);
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task UpdateManuallySelectedLanguage(Guid pluginId)
|
|
|
|
{
|
|
|
|
this.SettingsManager.ConfigurationData.App.LanguagePluginId = pluginId;
|
|
|
|
await this.MessageBus.SendMessage<bool>(this, Event.PLUGINS_RELOADED);
|
|
|
|
}
|
2025-01-05 14:11:15 +00:00
|
|
|
}
|