google-code-export / webpasswordsafe

Automatically exported from code.google.com/p/webpasswordsafe
0 stars 3 forks source link

Auto-Focus in Password Add Form - Field #87

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Please describe desired steps of proposed new feature/enhancement:
1.How can I implement a auto-focus to "Title" when I want to add a new Password 
with the menu button "Password->Add"?

What version of the product are you using? On what operating system?

v1.2.1

Please provide any additional information below.

Original issue reported on code.google.com by heindl...@googlemail.com on 27 Jun 2013 at 3:52

GoogleCodeExporter commented 9 years ago
Hello,

I solved the problem with adding following Line into 
src/main/java/net/webpasswordsafe/client/ui/PasswordDialog.java:

########################################

        addButton(cancelButton);

        setFields();
 +       this.setFocusWidget(nameTextBox);
    }

    private void doViewPasswordHistory()
    {
###########################################

That should be a Hint for someone who also needs this feature.

I think the issue can be closed. :)

Original comment by zuendapp...@googlemail.com on 26 Jul 2013 at 6:53

GoogleCodeExporter commented 9 years ago
Cool thanks, I'll roll that into the next release.

Original comment by joshdrum...@gmail.com on 28 Jul 2013 at 11:12

GoogleCodeExporter commented 9 years ago

Original comment by joshdrum...@gmail.com on 29 Jul 2013 at 4:13