Compare commits
3 Commits
3.32-Beta-
...
3.34-b3341
Author | SHA1 | Date | |
---|---|---|---|
501b10d793 | |||
898428367a | |||
1d38d28f46 |
@ -31,6 +31,6 @@ using Lers.Plugins;
|
||||
// Т.к. мы можем забыть это сделать, то лучше чтобы версия увеличивалась сама. Звездочку можно задать только для версии сборки,
|
||||
// для версии файла она не работает. Но если не указать версию файла, то она будет равна версии сборки.
|
||||
|
||||
[assembly: AssemblyVersion("3.31.47")]
|
||||
[assembly: AssemblyVersion("3.33.60")]
|
||||
//[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
|
||||
|
@ -337,10 +337,11 @@ namespace Vkt5_RemoteConsole
|
||||
|
||||
string showLine = this.displayLine;
|
||||
|
||||
if (this.displayCursor)
|
||||
if (showLine.Length > 0 && cursorPos < showLine.Length && this.displayCursor)
|
||||
{
|
||||
showLine = showLine.Remove(this.cursorPos, 1);
|
||||
showLine = showLine.Insert(this.cursorPos, cursorChar);
|
||||
showLine = showLine
|
||||
.Remove(this.cursorPos, 1)
|
||||
.Insert(this.cursorPos, cursorChar);
|
||||
}
|
||||
|
||||
this.txtLine1.Text = showLine.Substring(0, 16);
|
||||
@ -379,4 +380,4 @@ namespace Vkt5_RemoteConsole
|
||||
private bool isMenuBtnDown = false;
|
||||
private DateTime menuBtnPressTime = DateTime.MinValue;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user