@ -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);
}
/// <summary>