diff --git a/MultiTerm.Core/ViewModel/TerminalViewModel.cs b/MultiTerm.Core/ViewModel/TerminalViewModel.cs index ab928c5..5ba766d 100644 --- a/MultiTerm.Core/ViewModel/TerminalViewModel.cs +++ b/MultiTerm.Core/ViewModel/TerminalViewModel.cs @@ -348,8 +348,8 @@ public abstract partial class TerminalViewModel : ObservableObject, ITerminalVie // shallow copy of element (so that element can be changed externally) var copy = (IHistoryElement)element.Clone(); - // add to list - this.SentMessagesHistory.Add(copy); + // add to list at the beginning + this.SentMessagesHistory.Insert(0, copy); } ///