Hi, ich have the following proglem. I have a QTableView and add a model. Naturally. Now I get a table:
Qt Code:
  1. xxxxxxx
  2. xxxxxxx
  3. xxxxxxx
  4. xxxxxxx
To copy to clipboard, switch view to plain text mode 
Fine this is what is expected and usually wanted.
But I want to have a bigger space every two rows:
Qt Code:
  1. xxxxxxx
  2. xxxxxxx
  3.  
  4. xxxxxxx
  5. xxxxxxx
  6.  
  7. xxxxxxx
  8. xxxxxxx
To copy to clipboard, switch view to plain text mode 
Anyone an idea? I tried to use setRowHeight. Works great...as long as I don't use a QSortFilterProxyModel. When I activate sort setRowHeight works totally unpredictable.