mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 15:47:22 +01:00
Chara file data export (#38)
* add rudimentary saving of chara file data * fix building * working prototype for MCDF import and application * adjust code to use streams * rename cache -> storage add ui for import/export mcdf * minor wording adjustments, version bump Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com> Co-authored-by: Stanley Dimant <stanley.dimant@varian.com>
This commit is contained in:
parent
1c95a6d40e
commit
7a8655f6b1
15 changed files with 664 additions and 51 deletions
|
|
@ -14,6 +14,7 @@ public class DownloadUi : Window, IDisposable
|
|||
private readonly Configuration _pluginConfiguration;
|
||||
private readonly ApiController _apiController;
|
||||
private readonly UiShared _uiShared;
|
||||
private bool _wasOpen = false;
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
|
|
@ -52,6 +53,13 @@ public class DownloadUi : Window, IDisposable
|
|||
|
||||
public override void PreDraw()
|
||||
{
|
||||
if (_uiShared.IsInGpose)
|
||||
{
|
||||
_wasOpen = IsOpen;
|
||||
IsOpen = false;
|
||||
}
|
||||
|
||||
|
||||
base.PreDraw();
|
||||
if (_uiShared.EditTrackerPosition)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue