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:
authorHiroyuki Tanaka <myheroyuki@outlook.com>2023-01-26 15:48:57 +0300
committerHiroyuki Tanaka <myheroyuki@outlook.com>2023-01-26 15:48:57 +0300
commitfb2da65e72066d073d3b68ecc802d0ec2abeca60 (patch)
treed456e71c9e6fc9cc9e834e31eeddca068756122b
parentb5af4e125ece272b3609911e9d68da4a08a3c2b9 (diff)
parent3bc0ca1b1481c196d1857d4ece0acd37b4fcba3e (diff)
Merge branch '2825-Change-Log-Message' into 'master'
This should be a message instead of a info print. So that the user can see it by default. See merge request Remmina/Remmina!2461
-rw-r--r--plugins/x2go/x2go_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/x2go/x2go_plugin.c b/plugins/x2go/x2go_plugin.c
index 50020202d..37ca27279 100644
--- a/plugins/x2go/x2go_plugin.c
+++ b/plugins/x2go/x2go_plugin.c
@@ -2273,7 +2273,7 @@ static gchar* rmplugin_x2go_ask_session(RemminaProtocolWidget *gp, GError **erro
// Every 5 seconds
if (counter % 10 == 0 || counter == 0) {
- REMMINA_PLUGIN_INFO("%s", _("Waiting for user to select a session…"));
+ REMMINA_PLUGIN_MESSAGE("%s", _("Waiting for user to select a session…"));
}
counter++;
}