Enable TGUI

This commit is contained in:
ShadowLarkens
2020-08-20 19:37:55 -07:00
parent 309dd92cf1
commit aabe06f616
4 changed files with 49 additions and 43 deletions
+8 -2
View File
@@ -23,11 +23,17 @@ export const VolumePanel = (props, context) => {
minValue={0}
maxValue={200}
value={volume_channels[key] * 100}
onChange={(e, val) => act("adjust_volume", { channel: key, vol: (val / 100) })} />
onChange={(e, val) => act("adjust_volume", {
channel: key,
vol: (val / 100),
})} />
<Button
ml={1}
icon="undo"
onClick={() => act("adjust_volume", { channel: key, vol: 1 })} />
onClick={() => act("adjust_volume", {
channel: key,
vol: 1,
})} />
</LabeledList.Item>
))}
</LabeledList>
File diff suppressed because one or more lines are too long