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:
authorChris Chapman <sork@chaptown.me>2023-01-06 00:11:51 +0300
committerChris Chapman <sork@chaptown.me>2023-01-06 00:11:51 +0300
commit3bc0ca1b1481c196d1857d4ece0acd37b4fcba3e (patch)
tree73ad0ed34e18ca96185eeaeff3968dd64ddad4a1 /plugins
parent4f58b706a8c6c53c83b8409c09539b33e9ecb247 (diff)
This should be a message instead of a info print. So that the user can see it by default.
Diffstat (limited to 'plugins')
-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++;
}