Skip to content

Commit

Permalink
Unbind apps volume gestures and reflect that they're unbound in the c…
Browse files Browse the repository at this point in the history
…hange log
  • Loading branch information
SaschaCowley committed Jan 21, 2025
1 parent fa619c2 commit 5b5d605
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions source/globalCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -4851,7 +4851,6 @@ def script_cycleSoundSplit(self, gesture: "inputCore.InputGesture") -> None:
"Increases the volume of other applications",
),
category=SCRCAT_AUDIO,
gesture="kb:NVDA+alt+pageUp",
)
def script_increaseApplicationsVolume(self, gesture: "inputCore.InputGesture") -> None:
appsVolume._adjustAppsVolume(5)
Expand All @@ -4862,7 +4861,6 @@ def script_increaseApplicationsVolume(self, gesture: "inputCore.InputGesture") -
"Decreases the volume of other applications",
),
category=SCRCAT_AUDIO,
gesture="kb:NVDA+alt+pageDown",
)
def script_decreaseApplicationsVolume(self, gesture: "inputCore.InputGesture") -> None:
appsVolume._adjustAppsVolume(-5)
Expand All @@ -4883,7 +4881,6 @@ def script_toggleApplicationsVolumeAdjuster(self, gesture: "inputCore.InputGestu
"Mutes or unmutes other applications",
),
category=SCRCAT_AUDIO,
gesture="kb:NVDA+alt+delete",
)
def script_toggleApplicationsMute(self, gesture: "inputCore.InputGesture") -> None:
appsVolume._toggleAppsVolumeMute()
Expand Down
6 changes: 2 additions & 4 deletions user_docs/en/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@
* Support for math in PDFs has been added.
This works for formulas with associated MathML, such as some files generated by newer versions of TeX/LaTeX.
Currently this is only supported in Foxit Reader & Foxit Editor. (#9288, @NSoiffer)
* Commands to adjust the volume of other applications besides NVDA have been added.
* The ability to adjust the volume of other applications besides NVDA has been added.
To use this feature, "allow NVDA to control the volume of other applications" must be enabled in the audio settings panel. (#16052, @mltony, @codeofdusk)
* `NVDA+alt+pageUp`: Increase the volume of all other applications.
* `NVDA+alt+pageDown`: Decrease the volume of all other applications.
* `NVDA+alt+delete`: Mute the volume of all other applications.
* Added new unassigned gestures to increase, decrease and mute the volume of all other applications.
* When editing in Microsoft PowerPoint text boxes, you can now move per sentence with `alt+upArrow`/`alt+downArrow`. (#17015, @LeonarddeR)
* In Mozilla Firefox, NVDA will report the highlighted text when a URL containing a text fragment is visited. (#16910, @jcsteh)
* NVDA can now report when a link destination points to the current page. (#141, @LeonarddeR, @nvdaes)
Expand Down

0 comments on commit 5b5d605

Please sign in to comment.