From c25c0b1ad4e874be044474a2f105eac6e7cb1af5 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 4 Feb 2016 13:39:47 -0500 Subject: When moving a screen left/right, don't change the resolution (same physical monitor - just internal location change). --- lumina-xconfig/MainUI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lumina-xconfig') diff --git a/lumina-xconfig/MainUI.cpp b/lumina-xconfig/MainUI.cpp index afa65323..d2216fa7 100644 --- a/lumina-xconfig/MainUI.cpp +++ b/lumina-xconfig/MainUI.cpp @@ -191,7 +191,7 @@ void MainUI::MoveScreenLeft(){ if(item == 0){ return; } //no item on the left (can't go left) QString LID = item->whatsThis(); //left ID //Now run the command - LUtils::runCmd("xrandr", QStringList() << "--output" << CID << "--left-of" << LID << "--auto"); + LUtils::runCmd("xrandr", QStringList() << "--output" << CID << "--left-of" << LID); QTimer::singleShot(500, this, SLOT(UpdateScreens()) ); } @@ -205,7 +205,7 @@ void MainUI::MoveScreenRight(){ if(item == 0){ return; } //no item on the right (can't go right) QString RID = item->whatsThis(); //right ID //Now run the command - LUtils::runCmd("xrandr", QStringList() << "--output" << CID << "--right-of" << RID << "--auto"); + LUtils::runCmd("xrandr", QStringList() << "--output" << CID << "--right-of" << RID); QTimer::singleShot(500, this, SLOT(UpdateScreens()) ); } -- cgit