Better auto scroll to bottom when new log is written
Brian [2016-08-16 16:30:42]
Better auto scroll to bottom when new log is written
diff --git a/PokemonGo.RocketBot.Window/Forms/MainForm.cs b/PokemonGo.RocketBot.Window/Forms/MainForm.cs
index 7e1b92a..e39a138 100644
--- a/PokemonGo.RocketBot.Window/Forms/MainForm.cs
+++ b/PokemonGo.RocketBot.Window/Forms/MainForm.cs
@@ -365,7 +365,8 @@ namespace PokemonGo.RocketBot.Window.Forms
Instance.Invoke(new Action<Color, string>(ColoredConsoleWrite), color, message);
return;
}
- Instance.logTextBox.Select(Instance.logTextBox.Text.Length, 1); // Reset cursor to last
+ Instance.logTextBox.SelectionStart = Instance.logTextBox.Text.Length;
+ Instance.logTextBox.ScrollToCaret();
Instance.logTextBox.SelectionColor = color;
Instance.logTextBox.AppendText(message);
}
You may download the files in Public Git.