Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 1030a23

Browse files
committed
Set tab order to path/browse before buttons
1 parent bb48441 commit 1030a23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/GitHub.VisualStudio.UI/Views/Dialog/Clone/RepositoryCloneView.xaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Command="{Binding Clone}"
2828
Content="Clone"
2929
AutomationProperties.AutomationId="{x:Static ghfvs:AutomationIDs.CloneRepositoryButton}"
30-
KeyboardNavigation.TabIndex="3" />
30+
KeyboardNavigation.TabIndex="5" />
3131

3232
<Button
3333
Margin="6,0,0,0"
@@ -36,20 +36,20 @@
3636
Command="{Binding Open}"
3737
Content="Open"
3838
AutomationProperties.AutomationId="{x:Static ghfvs:AutomationIDs.OpenRepositoryButton}"
39-
KeyboardNavigation.TabIndex="4 "/>
39+
KeyboardNavigation.TabIndex="6"/>
4040
</StackPanel>
4141

4242
<DockPanel DockPanel.Dock="Bottom" Margin="0,9,0,0">
4343
<Label DockPanel.Dock="Left" Content="{x:Static ghfvs:Resources.localPathText}" />
4444
<Button DockPanel.Dock="Right"
4545
Command="{Binding Browse}"
4646
VerticalContentAlignment="Center"
47-
KeyboardNavigation.TabIndex="6">
47+
KeyboardNavigation.TabIndex="4">
4848
Browse...
4949
</Button>
5050
<TextBox Text="{Binding Path, UpdateSourceTrigger=PropertyChanged}" Margin="6,0"
5151
VerticalContentAlignment="Center"
52-
KeyboardNavigation.TabIndex="5" />
52+
KeyboardNavigation.TabIndex="3" />
5353
</DockPanel>
5454

5555
<uic:InfoPanel Message="{Binding PathWarning}"

0 commit comments

Comments
 (0)