aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lumina-xconfig/MainUI.cpp4
1 files changed, 2 insertions, 2 deletions
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()) );
}
bgstack15