refactor: move TimeoutStackStyle to its own file (#6216)

Co-authored-by: Mm2PL <miau@mail.kotmisia.pl>
This commit is contained in:
pajlada
2025-05-18 13:41:43 +02:00
committed by GitHub
parent 1baa4b4729
commit 0d4a45161e
6 changed files with 17 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace chatterino {
enum class TimeoutStackStyle : int {
StackHard = 0,
DontStackBeyondUserMessage = 1,
DontStack = 2,
Default = DontStackBeyondUserMessage,
};
} // namespace chatterino