diff options
author | Samuel Mannehed <samuel@cendio.se> | 2019-12-20 14:47:04 +0100 |
---|---|---|
committer | Samuel Mannehed <samuel@cendio.se> | 2019-12-20 14:47:04 +0100 |
commit | 103066e65820ee6d366b6e87bb827f1005e6f3fb (patch) | |
tree | 04d5577eb307e02771792595fc1bad8d54fa4b17 /vncviewer | |
parent | d461f7fdb8b01f655260ea2f495ece700f3c9898 (diff) | |
download | tigervnc-103066e65820ee6d366b6e87bb827f1005e6f3fb.tar.gz tigervnc-103066e65820ee6d366b6e87bb827f1005e6f3fb.zip |
Simplify color level descriptions
The number of colors used isn't something the end-users should have to
concern themselves with. I intentionally left the information in the
man-pages.
Diffstat (limited to 'vncviewer')
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 8 | ||||
-rw-r--r-- | vncviewer/parameters.cxx | 3 |
2 files changed, 5 insertions, 6 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index 62b5d9c5..314ad686 100644 --- a/vncviewer/OptionsDialog.cxx +++ b/vncviewer/OptionsDialog.cxx @@ -507,28 +507,28 @@ void OptionsDialog::createCompressionPage(int tx, int ty, int tw, int th) fullcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty, RADIO_MIN_WIDTH, RADIO_HEIGHT, - _("Full (all available colors)"))); + _("Full"))); fullcolorCheckbox->type(FL_RADIO_BUTTON); ty += RADIO_HEIGHT + TIGHT_MARGIN; mediumcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty, RADIO_MIN_WIDTH, RADIO_HEIGHT, - _("Medium (256 colors)"))); + _("Medium"))); mediumcolorCheckbox->type(FL_RADIO_BUTTON); ty += RADIO_HEIGHT + TIGHT_MARGIN; lowcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty, RADIO_MIN_WIDTH, RADIO_HEIGHT, - _("Low (64 colors)"))); + _("Low"))); lowcolorCheckbox->type(FL_RADIO_BUTTON); ty += RADIO_HEIGHT + TIGHT_MARGIN; verylowcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty, RADIO_MIN_WIDTH, RADIO_HEIGHT, - _("Very low (8 colors)"))); + _("Very low"))); verylowcolorCheckbox->type(FL_RADIO_BUTTON); ty += RADIO_HEIGHT + TIGHT_MARGIN; } diff --git a/vncviewer/parameters.cxx b/vncviewer/parameters.cxx index 05abd704..f0121e3e 100644 --- a/vncviewer/parameters.cxx +++ b/vncviewer/parameters.cxx @@ -76,8 +76,7 @@ BoolParameter fullColour("FullColor", AliasParameter fullColourAlias("FullColour", "Alias for FullColor", &fullColour); IntParameter lowColourLevel("LowColorLevel", "Color level to use on slow connections. " - "0 = Very Low (8 colors), 1 = Low (64 colors), " - "2 = Medium (256 colors)", 2); + "0 = Very Low, 1 = Low, 2 = Medium", 2); AliasParameter lowColourLevelAlias("LowColourLevel", "Alias for LowColorLevel", &lowColourLevel); StringParameter preferredEncoding("PreferredEncoding", "Preferred encoding to use (Tight, ZRLE, Hextile or" |