| Index: chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
|
| index 752ef35d095151822719d7bddaaab7f26ad72f6d..5e8605c013718076a33f5eb80108ba46c28112e8 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.cc
|
| @@ -120,7 +120,7 @@ bool BookmarkEditorView::Accept() {
|
| if (!IsDialogButtonEnabled(ui::DIALOG_BUTTON_OK)) {
|
| if (details_.GetNodeType() != BookmarkNode::FOLDER) {
|
| // The url is invalid, focus the url field.
|
| - url_tf_->SelectAll();
|
| + url_tf_->SelectAll(true);
|
| url_tf_->RequestFocus();
|
| }
|
| return false;
|
| @@ -259,7 +259,7 @@ void BookmarkEditorView::Show(gfx::NativeWindow parent_window) {
|
| ExpandAndSelect();
|
| GetWidget()->Show();
|
| // Select all the text in the name Textfield.
|
| - title_tf_->SelectAll();
|
| + title_tf_->SelectAll(true);
|
| // Give focus to the name Textfield.
|
| title_tf_->RequestFocus();
|
| }
|
|
|