Skip to content

Commit 53a7b99

Browse files
committed
sound settings: Revive overamplication on input.
disappeared at some point possibly in 520b4db
1 parent 5b65946 commit 53a7b99

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • files/usr/share/cinnamon/cinnamon-settings/modules

files/usr/share/cinnamon/cinnamon-settings/modules/cs_sound.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,11 +638,15 @@ def buildLayout(self):
638638
def onOverAmplificationChanged(self, settings=None, key=None):
639639
overamplification = self.sound_settings.get_boolean(OVERAMPLIFICATION_KEY)
640640
self.outVolume.slider.clear_marks()
641+
self.inVolume.slider.clear_marks()
641642
if overamplification:
642643
self.outVolume.adjustment.set_upper(150)
644+
self.inVolume.adjustment.set_upper(150)
643645
self.outVolume.setMark(100)
646+
self.inVolume.setMark(100)
644647
else:
645648
self.outVolume.adjustment.set_upper(100)
649+
self.inVolume.adjustment.set_upper(100)
646650

647651
def inializeController(self):
648652
self.controller = Cvc.MixerControl(name = "cinnamon")

0 commit comments

Comments
 (0)