Skip to content
Snippets Groups Projects
Commit 771fb559 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Correct quassel feature flags

parent 4925c0b7
Branches
Tags
Loading
...@@ -32,8 +32,10 @@ enum class QuasselFeature(override val bit: Int) : Flag<QuasselFeature> { ...@@ -32,8 +32,10 @@ enum class QuasselFeature(override val bit: Int) : Flag<QuasselFeature> {
Authenticators(0x0400), Authenticators(0x0400),
/** Sync buffer activity status */ /** Sync buffer activity status */
BufferActivitySync(0x0800), BufferActivitySync(0x0800),
/** Core-Side highlight configuration and matching */
CoreSideHighlights(0x1000),
/** Show prefixes for senders in backlog */ /** Show prefixes for senders in backlog */
SenderPrefixes(0x1000); SenderPrefixes(0x2000);
companion object : Flags.Factory<QuasselFeature> { companion object : Flags.Factory<QuasselFeature> {
override val NONE: Flags<QuasselFeature> = QuasselFeature.of() override val NONE: Flags<QuasselFeature> = QuasselFeature.of()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment