aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/OptionsDialog.cxx
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2021-12-10 10:22:54 +0100
committerPierre Ossman <ossman@cendio.se>2021-12-10 10:22:54 +0100
commit82cb269f9f1258b8188a7f8e64bf1e7a07b50677 (patch)
treef36d6bbff89b0ae3f0e92143341d064c5502a8dd /vncviewer/OptionsDialog.cxx
parente8105c4f85123b1a3bf76de27ebf8bdee287a7c1 (diff)
downloadtigervnc-82cb269f9f1258b8188a7f8e64bf1e7a07b50677.tar.gz
tigervnc-82cb269f9f1258b8188a7f8e64bf1e7a07b50677.zip
Rename "Screen" tab to "Display"
This is what pretty much everyone else calls these kind of settings, so let's change so users feel familiar.
Diffstat (limited to 'vncviewer/OptionsDialog.cxx')
-rw-r--r--vncviewer/OptionsDialog.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx
index d7c545da..b2eedc94 100644
--- a/vncviewer/OptionsDialog.cxx
+++ b/vncviewer/OptionsDialog.cxx
@@ -72,7 +72,7 @@ OptionsDialog::OptionsDialog()
createCompressionPage(tx, ty, tw, th);
createSecurityPage(tx, ty, tw, th);
createInputPage(tx, ty, tw, th);
- createScreenPage(tx, ty, tw, th);
+ createDisplayPage(tx, ty, tw, th);
createMiscPage(tx, ty, tw, th);
}
@@ -281,7 +281,7 @@ void OptionsDialog::loadOptions(void)
if (!strcmp(getMenuKeySymbols()[i].name, menuKeyBuf))
menuKeyChoice->value(i + 1);
- /* Screen */
+ /* Display */
if (!fullScreen) {
windowedButton->setonly();
} else {
@@ -391,7 +391,7 @@ void OptionsDialog::storeOptions(void)
menuKey.setParam(menuKeyChoice->text());
}
- /* Screen */
+ /* Display */
if (windowedButton->value()) {
fullScreen.setParam(false);
} else {
@@ -752,9 +752,9 @@ void OptionsDialog::createInputPage(int tx, int ty, int tw, int th)
}
-void OptionsDialog::createScreenPage(int tx, int ty, int tw, int th)
+void OptionsDialog::createDisplayPage(int tx, int ty, int tw, int th)
{
- Fl_Group *group = new Fl_Group(tx, ty, tw, th, _("Screen"));
+ Fl_Group *group = new Fl_Group(tx, ty, tw, th, _("Display"));
tx += OUTER_MARGIN;
ty += OUTER_MARGIN;