This commit is contained in:
David Sparer
2019-04-30 07:10:06 -05:00
parent 3e354868ea
commit b66022fb64
2 changed files with 9 additions and 2 deletions

View File

@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
### Changed
### Fixed
- #1426: Tabbing is reversed in config window
## [1.77.0] - 2019-04-29
### Added
- #1414: Add "Remote Audio Capture" option for RDP

View File

@@ -278,10 +278,10 @@ namespace mRemoteNG.UI.Window
switch (keyData)
{
case (Keys.Tab | Keys.Shift):
_pGrid.SelectNextGridItem();
_pGrid.SelectPreviousGridItem();
break;
case Keys.Tab:
_pGrid.SelectPreviousGridItem();
_pGrid.SelectNextGridItem();
break;
}