What I'm trying to do is directly print a widget.
How I have it right now is:

Qt Code:
  1. QPrinter p(QPrinter::HighResolution);
  2. p.setPageSize(QPrinter::Letter);
  3. p.setFullPage(true);
  4. this->ui->tabPersonal->render(&p);
To copy to clipboard, switch view to plain text mode 

It does print, but it is TINY! Any ideas?