1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-05 02:34:07 +02:00

Fix mouse wheel not working in Options form

This commit is contained in:
chylex 2017-06-20 20:40:37 +02:00
parent 781ca0bb77
commit 42f367f822

View File

@ -95,6 +95,7 @@ private void SelectTab(SettingsTab tab){
panelContents.Controls.Clear();
panelContents.Controls.Add(tab.Control);
panelContents.ResumeLayout(true);
panelContents.Focus();
currentTab = tab;
}