mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
Enabled and fixed Tab and Shift-Tab key combination in PropertyGrid
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
1.64:
|
||||
AR: Bugs fixed: #14, #22, #25
|
||||
AR: Fixed translations, moved everything into resx, refactoring, namespace renamed to mRemoteNG
|
||||
AR: Removed confConsNew.xml -> creating new files with vb code
|
||||
AR: Fixed RD Gateway and other inheritance bugs, rewritten to use a List of String instead of a string for hiding properties
|
||||
|
||||
@@ -235,6 +235,8 @@ Namespace UI
|
||||
|
||||
If pGrid.SelectedGridItem.Parent.GridItems.Count > gridItemIndex + 1 Then
|
||||
pGrid.SelectedGridItem.Parent.GridItems(gridItemIndex + 1).Select()
|
||||
Else
|
||||
pGrid.SelectedGridItem.Parent.GridItems(0).Select()
|
||||
End If
|
||||
End If
|
||||
If keyData = (Keys.Tab Or Keys.Shift) Then
|
||||
@@ -249,6 +251,8 @@ Namespace UI
|
||||
|
||||
If gridItemIndex - 1 >= 0 Then
|
||||
pGrid.SelectedGridItem.Parent.GridItems(gridItemIndex - 1).Select()
|
||||
Else
|
||||
pGrid.SelectedGridItem.Parent.GridItems(pGrid.SelectedGridItem.Parent.GridItems.Count - 1).Select()
|
||||
End If
|
||||
End If
|
||||
|
||||
|
||||
Reference in New Issue
Block a user