diff options
Diffstat (limited to 'modules/osd')
| -rw-r--r-- | modules/osd/Content.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/osd/Content.qml b/modules/osd/Content.qml index 639de77..619810f 100644 --- a/modules/osd/Content.qml +++ b/modules/osd/Content.qml @@ -46,6 +46,7 @@ Item { icon: Icons.getVolumeIcon(value, root.muted) value: root.volume + to: Config.services.maxVolume onMoved: Audio.setVolume(value) } } @@ -70,6 +71,7 @@ Item { icon: Icons.getMicVolumeIcon(value, root.sourceMuted) value: root.sourceVolume + to: Config.services.maxVolume onMoved: Audio.setSourceVolume(value) } } |