|
|
|
@ -348,8 +348,8 @@ public abstract partial class TerminalViewModel : ObservableObject, ITerminalVie |
|
|
|
// shallow copy of element (so that element can be changed externally) |
|
|
|
// shallow copy of element (so that element can be changed externally) |
|
|
|
var copy = (IHistoryElement)element.Clone(); |
|
|
|
var copy = (IHistoryElement)element.Clone(); |
|
|
|
|
|
|
|
|
|
|
|
// add to list |
|
|
|
// add to list at the beginning |
|
|
|
this.SentMessagesHistory.Add(copy); |
|
|
|
this.SentMessagesHistory.Insert(0, copy); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// <summary> |
|
|
|
|