diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-10-25 09:38:40 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-10-25 09:38:40 +0200 |
commit | 6ea16af28dfd27a42e4417871075d815e051ebc1 (patch) | |
tree | 729ef84b58ce0e26a82e4870c3743bc21c08ac5a | |
parent | 74fa8dde71ff20d4d55deefcbdcd6ae102ec555a (diff) | |
parent | b6ed93c633160468c4e8600c1e909d68f60d46d7 (diff) | |
download | ayatana-indicator-sound-6ea16af28dfd27a42e4417871075d815e051ebc1.tar.gz ayatana-indicator-sound-6ea16af28dfd27a42e4417871075d815e051ebc1.tar.bz2 ayatana-indicator-sound-6ea16af28dfd27a42e4417871075d815e051ebc1.zip |
Merge branch 'tari01-pr/fix-theming'
Attributes GH PR #88: https://github.com/AyatanaIndicators/ayatana-indicator-sound/pull/88
-rw-r--r-- | src/sound-menu.vala | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sound-menu.vala b/src/sound-menu.vala index 338f7c1..5cfc0a6 100644 --- a/src/sound-menu.vala +++ b/src/sound-menu.vala @@ -68,8 +68,8 @@ public class SoundMenu: Object } volume_section.append_item (this.create_slider_menu_item (_("Volume"), "indicator.volume(0)", 0.0, 1.0, 0.01, - "audio-volume-low-zero-panel", - "audio-volume-high-panel", true)); + "audio-volume-low-zero", + "audio-volume-high", true)); this.menu = new Menu (); this.menu.append_section (null, volume_section); @@ -134,8 +134,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-low-zero-panel", - "audio-input-microphone-high-panel", false); + "audio-input-microphone-low-zero", + "audio-input-microphone-high", false); volume_section.append_item (slider); this.mic_volume_shown = true; } @@ -289,8 +289,8 @@ public class SoundMenu: Object } this.volume_section.remove (index); this.volume_section.insert_item (index, this.create_slider_menu_item (_(label), "indicator.volume(0)", 0.0, 1.0, 0.01, - "audio-volume-low-zero-panel", - "audio-volume-high-panel", true)); + "audio-volume-low-zero", + "audio-volume-high", true)); } } |