mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-24 05:36:57 +01:00
Enable TGUI
This commit is contained in:
@@ -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
Reference in New Issue
Block a user