diff --git a/src/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs b/src/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs index 595e26a..03ec277 100644 --- a/src/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs +++ b/src/Eve-O-Preview/Services/Implementation/ThumbnailManager.cs @@ -177,6 +177,8 @@ namespace EveOPreview.Services { this._toggleAllThumbnailsHotkey = new HotkeyHandler(mainHandle, toggleAllThumbnailsKey); this._toggleAllThumbnailsHotkey.Pressed += (object s, HandledEventArgs e) => { this._configuration.ThumbnailsManuallyHidden = !this._configuration.ThumbnailsManuallyHidden; + this._hideThumbnailsDelay = 0; + this.RefreshThumbnails(); System.Diagnostics.Debug.WriteLine( $"Toggled all thumbnails: {(this._configuration.ThumbnailsManuallyHidden ? "Hidden" : "Visible")}"); e.Handled = true; @@ -256,6 +258,8 @@ namespace EveOPreview.Services { this._toggleAllThumbnailsHotkey = new HotkeyHandler(mainHandle, toggleAllThumbnailsKey); this._toggleAllThumbnailsHotkey.Pressed += (object s, HandledEventArgs e) => { this._configuration.ThumbnailsManuallyHidden = !this._configuration.ThumbnailsManuallyHidden; + this._hideThumbnailsDelay = 0; + this.RefreshThumbnails(); System.Diagnostics.Debug.WriteLine( $"Toggled all thumbnails: {(this._configuration.ThumbnailsManuallyHidden ? "Hidden" : "Visible")}"); e.Handled = true;