aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/DesktopWindow.cxx
diff options
context:
space:
mode:
authorPeter Åstrand <astrand@cendio.se>2012-08-27 08:11:20 +0000
committerPeter Åstrand <astrand@cendio.se>2012-08-27 08:11:20 +0000
commita21a0cf8881859a58e6ee9f3ff983a279db0467e (patch)
treeda5533d0178ca41cd7e73d29101033ed60e14004 /vncviewer/DesktopWindow.cxx
parent63d75cc0657933af9aab76caa52d7c7fdff2625a (diff)
downloadtigervnc-a21a0cf8881859a58e6ee9f3ff983a279db0467e.tar.gz
tigervnc-a21a0cf8881859a58e6ee9f3ff983a279db0467e.zip
Added a comment about -geometry limitations.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4974 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer/DesktopWindow.cxx')
-rw-r--r--vncviewer/DesktopWindow.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx
index 122a54da..6fc2b923 100644
--- a/vncviewer/DesktopWindow.cxx
+++ b/vncviewer/DesktopWindow.cxx
@@ -89,6 +89,10 @@ DesktopWindow::DesktopWindow(int w, int h, const char *name,
#endif
{
+ // Support for -geometry option. Note that although we do support
+ // negative coordinates, we do not support -XOFF-YOFF (ie
+ // coordinates relative to the right edge / bottom edge) at this
+ // time.
int geom_x = 0, geom_y = 0;
if (geometry.hasBeenSet()) {
int matched;