Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta (tmow) <antenore@simbiosi.org>2021-09-23 08:37:52 +0300
committerAntenore Gatta (tmow) <antenore@simbiosi.org>2021-09-23 08:37:52 +0300
commit6e1febc3e1b78956ac8444fdeb3d8564e41b845e (patch)
treeb85b8721b2c9a813a076570245b20d8dd7d5a6cd /plugins
parentc81673ac1c53b395272c0d76e6355e0835705788 (diff)
Adding VNCI Listen port field tooltip
This patch add a tooltip to clarify the use of the VNCI Remmina plugin. Closes #2608 Signed-off-by: Antenore Gatta (tmow) <antenore@simbiosi.org>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/vnc/vnc_plugin.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/vnc/vnc_plugin.c b/plugins/vnc/vnc_plugin.c
index 3dc3973a8..d54926277 100644
--- a/plugins/vnc/vnc_plugin.c
+++ b/plugins/vnc/vnc_plugin.c
@@ -1944,6 +1944,14 @@ static gchar repeater_tooltip[] =
" the repeater, e.g. with x11vnc:\n"
" x11vnc -connect repeater=ID:123456789+10.10.10.12:5500");
+static gchar vnciport_tooltip[] =
+ N_("Listening for remote VNC connection:\n"
+ " • The \"Listen on port\" field is the port Remmina will listen to,\n"
+ " e.g. 8888\n"
+ " • From the remote VNC server, you will connect to\n"
+ " Remmina, e.g. with x11vnc:\n"
+ " x11vnc -display :0 -connect 192.168.1.36:8888");
+
/* Array of RemminaProtocolSetting for basic settings.
* Each item is composed by:
* a) RemminaProtocolSettingType for setting type
@@ -1976,7 +1984,7 @@ static const RemminaProtocolSetting remmina_plugin_vnc_basic_settings[] =
*/
static const RemminaProtocolSetting remmina_plugin_vnci_basic_settings[] =
{
- { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "listenport", N_("Listen on port"), FALSE, NULL, NULL },
+ { REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "listenport", N_("Listen on port"), FALSE, NULL, vnciport_tooltip },
{ REMMINA_PROTOCOL_SETTING_TYPE_TEXT, "username", N_("Username"), FALSE, NULL, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_PASSWORD, "password", N_("User password"), FALSE, NULL, NULL },
{ REMMINA_PROTOCOL_SETTING_TYPE_SELECT, "colordepth", N_("Colour depth"), FALSE, colordepth_list, NULL },