Skip to content

Commit

Permalink
Fix #5290.
Browse files Browse the repository at this point in the history
  • Loading branch information
ylangisc committed Oct 6, 2010
1 parent f413ea4 commit 0297f32
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/ch/cyberduck/ui/winforms/BookmarkForm.cs
Expand Up @@ -416,6 +416,12 @@ private void textBoxUsername_TextChanged(object sender, EventArgs e)

private void textBoxPath_TextChanged(object sender, EventArgs e)
{
//prevent cursor from being positioned at the beginning after trimming trailing spaces
//see Host.setDefaultPath
if (textBoxPath.Focused)
{
textBoxPath.Select(textBoxPath.Text.Length, 0);
}
ChangedPathEvent();
}

Expand Down

0 comments on commit 0297f32

Please sign in to comment.