refactor: use SettingWidget::dropdown for emoji style (#6300)

This commit is contained in:
pajlada
2025-06-28 12:21:47 +02:00
committed by GitHub
parent ae3089b35c
commit 847814324f
8 changed files with 37 additions and 19 deletions
+18
View File
@@ -0,0 +1,18 @@
#pragma once
#include <cstdint>
namespace chatterino {
/// The available emoji styles in Chatterino
///
/// Each enum value has a "bitset value" defined so it can be used in a FlagsEnum to figure out
/// which emojis support which emoji style / set
enum class EmojiStyle : std::uint8_t {
Twitter = 1 << 0,
Facebook = 1 << 1,
Apple = 1 << 2,
Google = 1 << 3,
};
} // namespace chatterino