summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Åstrand <astrand@cendio.se>2004-12-30 08:19:52 +0000
committerPeter Åstrand <astrand@cendio.se>2004-12-30 08:19:52 +0000
commit1420e27ac0e109425a7477689242deef06aa1504 (patch)
tree25c6f8ee79a668a4931151a9ed5c982af0fd665f
parentf7bf573f042c3d783031b5ae9eb215158276f018 (diff)
downloadtigervnc-1420e27ac0e109425a7477689242deef06aa1504.tar.gz
tigervnc-1420e27ac0e109425a7477689242deef06aa1504.zip
Moved color level buttons down, aligned with encoding buttons
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@65 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r--vncviewer_unix/OptionsDialog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vncviewer_unix/OptionsDialog.h b/vncviewer_unix/OptionsDialog.h
index 8c9adb6d..88f1c8b1 100644
--- a/vncviewer_unix/OptionsDialog.h
+++ b/vncviewer_unix/OptionsDialog.h
@@ -75,19 +75,19 @@ public:
y += formatAndEnc.height();
autoSelect.move(xPad, y);
int x2 = xPad + autoSelect.width() + xPad*5;
- fullColour.move(x2, y);
y += autoSelect.height();
tight.move(xPad, y);
- mediumColour.move(x2, y);
+ fullColour.move(x2, y);
y += tight.height();
zrle.move(xPad, y);
- lowColour.move(x2, y);
+ mediumColour.move(x2, y);
y += zrle.height();
hextile.move(xPad, y);
- veryLowColour.move(x2, y);
+ lowColour.move(x2, y);
y += hextile.height();
raw.move(xPad, y);
- y += raw.height() + yPad;
+ veryLowColour.move(x2, y);
+ y += raw.height() + yPad*2;
customCompressLevel.move(xPad, y);
y += customCompressLevel.height();