diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/timeline/InputBar.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/timeline/InputBar.h b/src/timeline/InputBar.h index 2b1c84e4..5e885d4f 100644 --- a/src/timeline/InputBar.h +++ b/src/timeline/InputBar.h @@ -194,16 +194,16 @@ public slots: void storeForEdit() { - textBeforeEdit = text(); - mentionsBefore = mentions_; - mentionTextsBefore = mentionTexts_; + textBeforeEdit = text(); + mentionsBefore = mentions_; + mentionTextsBefore = mentionTexts_; containsAtRoomBefore = containsAtRoom_; emit mentionsChanged(); } void restoreAfterEdit() { - mentions_ = mentionsBefore; - mentionTexts_ = mentionTextsBefore; + mentions_ = mentionsBefore; + mentionTexts_ = mentionTextsBefore; containsAtRoom_ = containsAtRoomBefore; mentionsBefore.clear(); mentionTextsBefore.clear(); |