Skip to content

Commit

Permalink
Merge pull request #54 from ericksson/master
Browse files Browse the repository at this point in the history
 [Fixes bug #1081030] Fix focus for resize canvas/image dialog fields.
  • Loading branch information
cameronwhite committed Jan 31, 2013
2 parents cf03bd1 + 5ccf40d commit 6ae40d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Pinta/Dialogs/ResizeCanvasDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public ResizeCanvasDialog () : base (Catalog.GetString ("Resize Canvas"), PintaC
widthSpinner.ActivatesDefault = true;
heightSpinner.ActivatesDefault = true;
percentageSpinner.ActivatesDefault = true;
percentageSpinner.GrabFocus();
}

#region Public Methods
Expand Down
1 change: 1 addition & 0 deletions Pinta/Dialogs/ResizeImageDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public ResizeImageDialog () : base (Catalog.GetString ("Resize Image"), PintaCor
widthSpinner.ActivatesDefault = true;
heightSpinner.ActivatesDefault = true;
percentageSpinner.ActivatesDefault = true;
percentageSpinner.GrabFocus();
}

#region Public Methods
Expand Down

0 comments on commit 6ae40d6

Please sign in to comment.