aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/Ui
diff options
context:
space:
mode:
authorThog <me@thog.eu>2020-04-30 14:07:41 +0200
committerGitHub <noreply@github.com>2020-04-30 14:07:41 +0200
commit886e42fb19b5d69a6a256e20bd1b948124f790a3 (patch)
tree8648c0a8b3cb82032e9cc9adae411cc8d1dbc8d3 /Ryujinx.Common/Configuration/Ui
parent7ab3fccd4d13bf3ed07a7fa207cfee61b43c56f3 (diff)
Use the official JSON parser (#1151)
This remove Utf8son and JsonPrettyPrinter dependencies. NOTE: the standard JSON parser doesn't support configurable indentation, as a result, all the pretty printed JSON are indented with 2 spaces.
Diffstat (limited to 'Ryujinx.Common/Configuration/Ui')
-rw-r--r--Ryujinx.Common/Configuration/Ui/GuiColumns.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/Ryujinx.Common/Configuration/Ui/GuiColumns.cs b/Ryujinx.Common/Configuration/Ui/GuiColumns.cs
index 2b3524aa..de4f7369 100644
--- a/Ryujinx.Common/Configuration/Ui/GuiColumns.cs
+++ b/Ryujinx.Common/Configuration/Ui/GuiColumns.cs
@@ -2,15 +2,15 @@
{
public struct GuiColumns
{
- public bool FavColumn;
- public bool IconColumn;
- public bool AppColumn;
- public bool DevColumn;
- public bool VersionColumn;
- public bool TimePlayedColumn;
- public bool LastPlayedColumn;
- public bool FileExtColumn;
- public bool FileSizeColumn;
- public bool PathColumn;
+ public bool FavColumn { get; set; }
+ public bool IconColumn { get; set; }
+ public bool AppColumn { get; set; }
+ public bool DevColumn { get; set; }
+ public bool VersionColumn { get; set; }
+ public bool TimePlayedColumn { get; set; }
+ public bool LastPlayedColumn { get; set; }
+ public bool FileExtColumn { get; set; }
+ public bool FileSizeColumn { get; set; }
+ public bool PathColumn { get; set; }
}
}