fix: use correct installer group IDs

This commit is contained in:
goat 2023-10-27 12:21:10 +02:00
parent b7eb0f122c
commit 9187a100da
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
3 changed files with 14 additions and 9 deletions

View file

@ -411,13 +411,13 @@ internal class PluginInstallerWindow : Window, IDisposable
{
case PluginInstallerOpenKind.AllPlugins:
// Plugins group
this.categoryManager.CurrentGroupIdx = 0;
this.categoryManager.CurrentGroupIdx = 2;
// All category
this.categoryManager.CurrentCategoryIdx = 0;
break;
case PluginInstallerOpenKind.InstalledPlugins:
// Installed group
this.categoryManager.CurrentGroupIdx = 2;
this.categoryManager.CurrentGroupIdx = 1;
// All category
this.categoryManager.CurrentCategoryIdx = 0;
break;