File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
common/src/main/kotlin/com/lambda/module Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,12 +98,12 @@ abstract class Module(
9898 private val isEnabledSetting = setting(" Enabled" , enabledByDefault, visibility = { false })
9999 private val keybindSetting = setting(" Keybind" , defaultKeybind)
100100 private val isVisible = setting(" Visible" , true )
101- val customTags = setting(" Tags" , defaultTags , visibility = { false })
101+ val customTags = setting(" Tags" , emptySet< ModuleTag >() , visibility = { false })
102102
103103 var isEnabled by isEnabledSetting
104104 override val isMuted: Boolean
105105 get() = ! isEnabled && ! alwaysListening
106- private val keybind by keybindSetting
106+ val keybind by keybindSetting
107107
108108 init {
109109 listener<KeyPressEvent >(alwaysListen = true ) { event ->
You can’t perform that action at this time.
0 commit comments