diff options
author | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-02-06 11:06:39 +0700 |
---|---|---|
committer | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-02-06 11:06:39 +0700 |
commit | eef8bab78435d86107d95951cc1da04317520d33 (patch) | |
tree | 2895150c05bd9d4db5ae4c406616260f3957c51b /src/main/kotlin/cc/woverflow/chatting | |
parent | 6ef0b0b64522ae45bf3747b26bd6dc5f58358f82 (diff) | |
download | Chatting-eef8bab78435d86107d95951cc1da04317520d33.tar.gz Chatting-eef8bab78435d86107d95951cc1da04317520d33.tar.bz2 Chatting-eef8bab78435d86107d95951cc1da04317520d33.zip |
compact input box
Diffstat (limited to 'src/main/kotlin/cc/woverflow/chatting')
-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 ec27a4e..67db660 100644 --- a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt +++ b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt @@ -52,6 +52,14 @@ object ChattingConfig : Vigilant(File(Chatting.modDir, "${Chatting.ID}.toml"), C @Property( type = PropertyType.SWITCH, + name = "Compact Input Box", + description = "Make the width of the input box the same size as the chat box.", + category = "General" + ) + var compactInputBox = false + + @Property( + type = PropertyType.SWITCH, name = "Inform for Alternatives", description = "Inform the user if a mod they are using can be replaced by a feature in Chatting.", category = "General" |