From eef8bab78435d86107d95951cc1da04317520d33 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Sun, 6 Feb 2022 11:06:39 +0700 Subject: compact input box --- src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/kotlin/cc/woverflow/chatting') 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 @@ -50,6 +50,14 @@ object ChattingConfig : Vigilant(File(Chatting.modDir, "${Chatting.ID}.toml"), C ) var chatBackgroundColor = Color(0, 0, 0, 50) + @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", -- cgit