mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
fixed #1426
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user