From 82f7c5c8ac21cd768718c56ab65eb678846edae9 Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Sun, 5 Jun 2016 14:39:51 +0300 Subject: [PATCH] Save configuration when the EVE-O Preview is closed --- Eve-O-Preview/Presentation/MainPresenter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Eve-O-Preview/Presentation/MainPresenter.cs b/Eve-O-Preview/Presentation/MainPresenter.cs index 3a1a50d..097f89c 100644 --- a/Eve-O-Preview/Presentation/MainPresenter.cs +++ b/Eve-O-Preview/Presentation/MainPresenter.cs @@ -53,6 +53,7 @@ namespace EveOPreview.UI private void ExitApplication() { this._thumbnailManager.Deactivate(); + this._configurationStorage.Save(); this._exitApplication = true; this.View.Close(); }