Hi all. I have problem with mac os and resize windows for tow monitors.

I try call

Qt Code:
  1. QQuickView::showFullscreen();
To copy to clipboard, switch view to plain text mode 

but QQuickView resize on primary desktop.

ok, i try call

Qt Code:
  1. void Window::show()
  2. {
  3.  
  4. QRect screenRect;
  5. QList<QScreen *> screenList = QGuiApplication::screens();
  6.  
  7. for (int i = 0 ; i < screenList.count(); ++i) {
  8. screenRect = screenRect.united(screenList.at(i).geometry());
  9. }
  10.  
  11. setGeometry(screenRect);
  12. QQuickView::show();
  13. }
To copy to clipboard, switch view to plain text mode 

i see half window on primary screen, and all, tow half not visible.

How i can resize window for tow monitors ?

Mac OS 10.10
Qt 5.3.2