diff options
author | Peter Åstrand <astrand@cendio.se> | 2004-12-28 15:07:38 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2004-12-28 15:07:38 +0000 |
commit | 1e6d898940cd459e865b4fa308b01292f730976e (patch) | |
tree | 9b6b4736158e557801e971ef95d1a01986d82fd4 /vncviewer/OptionsDialog.cxx | |
parent | b2b44812a318a0ac44a44e6838e5baf63150b483 (diff) | |
download | tigervnc-1e6d898940cd459e865b4fa308b01292f730976e.tar.gz tigervnc-1e6d898940cd459e865b4fa308b01292f730976e.zip |
Color level selection is disabled when using AutoSelect
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@55 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer/OptionsDialog.cxx')
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index 93e7f0c7..cfed1fc5 100644 --- a/vncviewer/OptionsDialog.cxx +++ b/vncviewer/OptionsDialog.cxx @@ -121,6 +121,10 @@ public: enableItem(IDC_ENCODING_ZRLE, ok); enableItem(IDC_ENCODING_HEXTILE, ok); enableItem(IDC_ENCODING_RAW, ok); + enableItem(IDC_FORMAT_FULLCOLOUR, ok); + enableItem(IDC_FORMAT_MEDIUMCOLOUR, ok); + enableItem(IDC_FORMAT_LOWCOLOUR, ok); + enableItem(IDC_FORMAT_VERYLOWCOLOUR, ok); return true; } return false; |