Hello,

I have QTableView and i fill it with checkbox widget's.
Qt Code:
  1. QCheckBox editor = new QCheckBox();
  2. tableView->setIndexWidget (index,editor); //index is QModelIndex();
To copy to clipboard, switch view to plain text mode 
But widgets are alignment to right side. I want alignment to middle.

How can I set this?