diff options
author | Ken Moore <ken@ixsystems.com> | 2017-06-22 14:41:19 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-06-22 14:41:19 -0400 |
commit | 6d70d4a72a921d6279cc4282dbe1ae996f6d47d3 (patch) | |
tree | bb5177c08d302775183d93ef03c2db6a4f992b2c /src-qt5/core/libLumina/test | |
parent | Cleanup some debugging information. (diff) | |
download | lumina-6d70d4a72a921d6279cc4282dbe1ae996f6d47d3.tar.gz lumina-6d70d4a72a921d6279cc4282dbe1ae996f6d47d3.tar.bz2 lumina-6d70d4a72a921d6279cc4282dbe1ae996f6d47d3.zip |
Flesh out the public functions which can be used for an OutputDevice in LuminaRandR.
There is now:
enable(QRect)
changeResolution(QSize)
move(QPoint)
setGeometry(QRect)
All of these run the same inline/backend function for turning on and configuring the monitor
Diffstat (limited to 'src-qt5/core/libLumina/test')
-rw-r--r-- | src-qt5/core/libLumina/test/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/test/main.cpp b/src-qt5/core/libLumina/test/main.cpp index 39ead1aa..20421c36 100644 --- a/src-qt5/core/libLumina/test/main.cpp +++ b/src-qt5/core/libLumina/test/main.cpp @@ -6,7 +6,7 @@ int main(int argc, char** argv){ QString toggle = "HDMI-2"; - QRect toggleGeom(0,0, 1600,900); + QRect toggleGeom(1980,0, 1600,900); int toggleOK = -1; //-1: automatic, 0: enable monitor, 1: disable monitor QApplication A(argc, argv); |