# HG changeset patch # User Wladimir J. van der Laan # Date 1339490784 -7200 # Node ID 97420623399cce5c5653ff303e066c41c5573c5f # Parent c2271f50920ff0c4445f8f5784299e258e1bdf1a Do not select first address automatically in the address book This contributed to an accidental send (#1384), and has no clear advantage, better to disable it. diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp --- a/src/qt/addressbookpage.cpp +++ b/src/qt/addressbookpage.cpp @@ -90,11 +90,6 @@ connect(ui->tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(selectionChanged())); - if(mode == ForSending) - { - // Auto-select first row when in sending mode - ui->tableView->selectRow(0); - } selectionChanged(); }