diff options
| author | Xpl0itR <xpl0itr@outlook.com> | 2020-06-26 11:30:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-26 12:30:16 +0200 |
| commit | 68a6960617f0703d09971a78445e42bf42b20025 (patch) | |
| tree | b513024397b554efbb1e780c61b58b560bc0355f /Ryujinx.Common/Configuration/Ui | |
| parent | 9a49f8aec92f7707037f5d1e677078451d07036b (diff) | |
Remember GUI column sort and separate hotkey settings from emulated input settings (#1223)
* Separate hotkey settings from emulated input settings
* Remember gui column sort
* nit
* fix schema
* nit
* Remove unused SaveDataPath to speed up game list loading
* Reset the vertical scrollbar to the top when titles finish loading
Diffstat (limited to 'Ryujinx.Common/Configuration/Ui')
| -rw-r--r-- | Ryujinx.Common/Configuration/Ui/ColumnSort.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/Ui/ColumnSort.cs b/Ryujinx.Common/Configuration/Ui/ColumnSort.cs new file mode 100644 index 00000000..fd8b5da1 --- /dev/null +++ b/Ryujinx.Common/Configuration/Ui/ColumnSort.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.Configuration.Ui +{ + public struct ColumnSort + { + public int SortColumnId { get; set; } + public bool SortAscending { get; set; } + } +}
\ No newline at end of file |
