Make username/email field the initially selected field when showing the add dialogs.
This commit is contained in:
parent
d023d70c92
commit
7a2c4cef9a
|
@ -41,6 +41,8 @@ class AccountsFeedWranglerWindowController: NSWindowController {
|
||||||
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
||||||
signInTextField.stringValue = NSLocalizedString("Sign in to your Feed Wrangler account.", comment: "SignIn")
|
signInTextField.stringValue = NSLocalizedString("Sign in to your Feed Wrangler account.", comment: "SignIn")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
usernameTextField.becomeFirstResponder()
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: API
|
// MARK: API
|
||||||
|
|
|
@ -41,6 +41,8 @@ class AccountsFeedbinWindowController: NSWindowController {
|
||||||
actionButton.title = NSLocalizedString("Create", comment: "Add Account")
|
actionButton.title = NSLocalizedString("Create", comment: "Add Account")
|
||||||
signInTextField.stringValue = NSLocalizedString("Sign in to your Feedbin account.", comment: "SignIn")
|
signInTextField.stringValue = NSLocalizedString("Sign in to your Feedbin account.", comment: "SignIn")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
usernameTextField.becomeFirstResponder()
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: API
|
// MARK: API
|
||||||
|
|
|
@ -41,6 +41,8 @@ class AccountsNewsBlurWindowController: NSWindowController {
|
||||||
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
||||||
signInTextField.stringValue = NSLocalizedString("Sign in to your NewsBlur account.", comment: "SignIn")
|
signInTextField.stringValue = NSLocalizedString("Sign in to your NewsBlur account.", comment: "SignIn")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
usernameTextField.becomeFirstResponder()
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: API
|
// MARK: API
|
||||||
|
|
|
@ -70,6 +70,8 @@ class AccountsReaderAPIWindowController: NSWindowController {
|
||||||
} else {
|
} else {
|
||||||
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
usernameTextField.becomeFirstResponder()
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: API
|
// MARK: API
|
||||||
|
|
Loading…
Reference in New Issue