From 3db5420bebc092636952e8c21d3b54d93b28db43 Mon Sep 17 00:00:00 2001 From: beaumanvienna Date: Tue, 23 Sep 2014 22:33:25 +0200 Subject: [PATCH] dual head support for Qt reworked / --fullscreen for Qt / fullscreen top most --- Qt/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Qt/mainwindow.cpp b/Qt/mainwindow.cpp index af64f4bfc2..6ca2286479 100644 --- a/Qt/mainwindow.cpp +++ b/Qt/mainwindow.cpp @@ -39,8 +39,8 @@ int getDisplayNumber(void) // setup default: primary display displayNumber = 0; - //check if larger equal -1 (= default screen) and less then display numbers - if ((tempValue >=-1) && (tempValue < getNumVideoDisplays())) + //check if larger equal 0 and less then display numbers + if ((tempValue >=0) && (tempValue < getNumVideoDisplays())) { // check passed displayNumber = tempValue;