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 <antenore@simbiosi.org>2020-03-27 17:28:06 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-03-27 17:28:06 +0300
commit20d0bfeaddc5f9c768a5a40b324feba87454fa78 (patch)
treec01bfea6b49a8ac4d5aa23d39de10fb95043d5dd
parent88824b5417abb22cf3f5d907a65f957fcd31e4b3 (diff)
parentc7847ae52d9e51a3f5f709e629535c895acf3083 (diff)
Merge branch 'enter_in_domain_to_connect' into 'master'
Allow enter key in domain textbox of authentication dialog to submit See merge request Remmina/Remmina!2028
-rw-r--r--src/remmina_message_panel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remmina_message_panel.c b/src/remmina_message_panel.c
index fc4229a55..a5a70543f 100644
--- a/src/remmina_message_panel.c
+++ b/src/remmina_message_panel.c
@@ -404,6 +404,7 @@ void remmina_message_panel_setup_auth(RemminaMessagePanel *mp, RemminaMessagePan
gtk_widget_set_margin_bottom (GTK_WIDGET(domain_entry), 3);
gtk_widget_set_margin_start (GTK_WIDGET(domain_entry), 6);
gtk_widget_set_margin_end (GTK_WIDGET(domain_entry), 18);
+ gtk_entry_set_activates_default (GTK_ENTRY(domain_entry), TRUE);
gtk_widget_show(domain_entry);
gtk_grid_attach(GTK_GRID(grid), domain_entry, 1, grid_row, 2, 1);
gtk_entry_set_max_length(GTK_ENTRY(domain_entry), 100);