From ac245f51287d920813fc5403ace7909f52cc46ae Mon Sep 17 00:00:00 2001
From: chylex <contact@chylex.com>
Date: Wed, 21 Jun 2017 09:07:50 +0200
Subject: [PATCH] Fix retarded scroll bar behavior in Options

---
 Core/Other/FormSettings.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Core/Other/FormSettings.cs b/Core/Other/FormSettings.cs
index aa8103e0..2b1facb9 100644
--- a/Core/Other/FormSettings.cs
+++ b/Core/Other/FormSettings.cs
@@ -109,6 +109,7 @@ private void SelectTab(SettingsTab tab){
             }
             
             panelContents.SuspendLayout();
+            panelContents.VerticalScroll.Value = 0; // https://gfycat.com/GrotesqueTastyAstarte
             panelContents.Controls.Clear();
             panelContents.Controls.Add(tab.Control);
             panelContents.ResumeLayout(true);