diff --git a/Ryujinx/Ui/ApplicationLibrary.cs b/Ryujinx/Ui/ApplicationLibrary.cs index 13da5da60e..df1b4b12ab 100644 --- a/Ryujinx/Ui/ApplicationLibrary.cs +++ b/Ryujinx/Ui/ApplicationLibrary.cs @@ -15,6 +15,7 @@ using System.Text; using Utf8Json; using Utf8Json.Resolvers; using SystemState = Ryujinx.HLE.HOS.SystemState; +using ApplicationData = Ryujinx.UI.ApplicationLibrary.ApplicationData; namespace Ryujinx.UI { @@ -476,8 +477,8 @@ namespace Ryujinx.UI public class ApplicationAddedEventArgs : EventArgs { - public ApplicationLibrary.ApplicationData AppData { get; set; } - public float NumAppsFound { get; set; } - public float NumAppsLoaded { get; set; } + public ApplicationData AppData { get; set; } + public float NumAppsFound { get; set; } + public float NumAppsLoaded { get; set; } } } diff --git a/Ryujinx/_schema.json b/Ryujinx/_schema.json index 91d0ffeb5f..f0321f8470 100644 --- a/Ryujinx/_schema.json +++ b/Ryujinx/_schema.json @@ -494,7 +494,18 @@ "type": "array", "title": "Used to toggle columns in the GUI", "description": "Used to toggle columns in the GUI", - "default": [ true, true, true, true, true, true, true, true, true, true ] + "default": { + "fav_column": true, + "icon_column": true, + "app_column": true, + "dev_column": true, + "version_column": true, + "time_played_column": true, + "last_played_column": true, + "file_ext_column": true, + "file_size_column": true, + "path_column": true + } }, "enable_custom_theme": { "$id": "#/properties/enable_custom_theme",