Skip to content

Commit 5297949

Browse files
committed
fix(installer): ui glitch caused by tab stops
1 parent eff50da commit 5297949

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

package/WindowsManaged/Dialogs/PublicKeyServerDialog.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ private void butValidate_Click(object sender, EventArgs e)
130130
return;
131131
}
132132

133+
// WinForms "feature"; disabling the button on the next line will shift focus to the next tab stop.
134+
// If it's a radio button it will get selected. We don't want that.
135+
this.label3.Focus();
133136

134137
this.butValidate.Enabled = false;
135138
this.next.Enabled = false;

0 commit comments

Comments
 (0)