diff options
author | Cephetir <silyichev@gmail.com> | 2022-05-06 12:41:54 +0300 |
---|---|---|
committer | Cephetir <silyichev@gmail.com> | 2022-05-06 12:41:54 +0300 |
commit | b5002d403246d91b8276791c1d16847abbbadab9 (patch) | |
tree | c011350cd8b1e29252edf672c68bbcb7cbc2a28d /src/main/kotlin/cc/woverflow/chatting/config | |
parent | d3b3d5273d6754c991d6ba9a69884071a8e56c91 (diff) | |
download | Chatting-b5002d403246d91b8276791c1d16847abbbadab9.tar.gz Chatting-b5002d403246d91b8276791c1d16847abbbadab9.tar.bz2 Chatting-b5002d403246d91b8276791c1d16847abbbadab9.zip |
Timestamp on hover
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting/config')
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt index 93a8723..e80fa94 100644 --- a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt +++ b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt @@ -80,6 +80,14 @@ object ChattingConfig : @Property( type = PropertyType.SWITCH, + name = "Show Timestamp", + description = "Show message timestamp on hover.", + category = "General" + ) + var showTimestamp = false + + @Property( + type = PropertyType.SWITCH, name = "Custom Chat Height", description = "Allows you to change the height of chat to heights greater than before.", category = "Chat Window" |