diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-06-16 01:09:54 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-06-16 01:09:54 -0400 |
commit | d0fa308f6e339b94044d39bf0e76b8221da48c3a (patch) | |
tree | b8e54703587885856c7d939f213b14e62c737115 /src/components/chatinput.hpp | |
parent | 4456c8771da668cbadb411583624fe0e357fa687 (diff) | |
download | abaddon-portaudio-d0fa308f6e339b94044d39bf0e76b8221da48c3a.tar.gz abaddon-portaudio-d0fa308f6e339b94044d39bf0e76b8221da48c3a.zip |
preserve attachment insertion order
Diffstat (limited to 'src/components/chatinput.hpp')
-rw-r--r-- | src/components/chatinput.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chatinput.hpp b/src/components/chatinput.hpp index ba3ab36..254f96f 100644 --- a/src/components/chatinput.hpp +++ b/src/components/chatinput.hpp @@ -41,7 +41,7 @@ public: [[nodiscard]] std::vector<ChatSubmitParams::Attachment> GetAttachments() const; private: - std::set<ChatInputAttachmentItem *> m_attachments; + std::vector<ChatInputAttachmentItem *> m_attachments; Gtk::Box m_box; |