[Development] Add code which process new GUI-exposed security options.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4143 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/unix/vncviewer/OptionsDialog.h b/unix/vncviewer/OptionsDialog.h
index 64c0910..549372a 100644
--- a/unix/vncviewer/OptionsDialog.h
+++ b/unix/vncviewer/OptionsDialog.h
@@ -263,6 +263,13 @@
compressLevel.disabled(!customCompressLevel.checked());
} else if (checkbox == &noJpeg) {
qualityLevel.disabled(autoSelect.checked() || !noJpeg.checked());
+ } else if (checkbox == &secVeNCrypt) {
+ encTLS.checked(false);
+ encTLS.disabled(!secVeNCrypt.checked());
+ encX509.checked(false);
+ encX509.disabled(!secVeNCrypt.checked());
+ secPlain.checked(false);
+ secPlain.disabled(!secVeNCrypt.checked());
}
}