aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRatchanan Srirattanamet <ratchanan@ubports.com>2020-04-28 01:01:51 +0700
committerRobert Tari <robert@tari.in>2021-08-12 02:25:11 +0200
commite27469555f2e2f2d8b7722507c50f15952f24bd1 (patch)
tree3665107f000447bda2ab1bc01146b45250a03e5f
parentef802adfb4afe44ae2ef529275aadc2629d7170f (diff)
downloadayatana-indicator-sound-e27469555f2e2f2d8b7722507c50f15952f24bd1.tar.gz
ayatana-indicator-sound-e27469555f2e2f2d8b7722507c50f15952f24bd1.tar.bz2
ayatana-indicator-sound-e27469555f2e2f2d8b7722507c50f15952f24bd1.zip
Revert "Merge pull request #19 from mateosalta/patch-1"
This attempt to fix the microphone icon in the sound indicator doesn't fix the problem and breaks the test. I decided to revert it so that when the correct fix is in place (which is outside the indicator), it'll work as intended. This reverts commit d73cef63a75cb313842436266f5158de6ac3fe07, reversing changes made to 9dd32c3ac9392a5412d8274cb198e0d6687e982c.
-rw-r--r--src/sound-menu.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound-menu.vala b/src/sound-menu.vala
index ebde2a9..bcf2042 100644
--- a/src/sound-menu.vala
+++ b/src/sound-menu.vala
@@ -123,8 +123,8 @@ public class SoundMenu: Object
set {
if (value && !this.mic_volume_shown) {
var slider = this.create_slider_menu_item (_("Microphone Volume"), "indicator.mic-volume", 0.0, 1.0, 0.01,
- "audio-input-microphone-muted-symbolic",
- "audio-input-microphone-symbolic", false);
+ "audio-input-microphone-low-zero-panel",
+ "audio-input-microphone-high-panel", false);
volume_section.append_item (slider);
this.mic_volume_shown = true;
}