That is strange. What did you set for view properties?

I have a table view like this:

Qt Code:
  1. model = new QSqlTableModel(this, logdb);
  2. view = new QTableView();
  3. view->setModel(model);
  4. model->setTable("log");
  5. header = new QHeaderView(Qt::Horizontal, this);
  6. view->setHorizontalHeader(header);
  7. header->setMovable(TRUE);
To copy to clipboard, switch view to plain text mode 

And when I click in a table cell to edit, it highlights the cell, then if I double click, it highlights just the text for editing. Nothing goes away.