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:
authormyheroyuki <myheroyuki@outlook.com>2023-07-05 14:39:30 +0300
committermyheroyuki <myheroyuki@outlook.com>2023-07-05 14:39:30 +0300
commitadf5ceaf7d1a529b966f51ca421e04e3bb6bb688 (patch)
tree2c2722c2f0c74cc960975996052f4265e8804c7d
parent6faef92c83dfbb618885367fbf116506aef96146 (diff)
Fix spacing in exec plugin logs
-rw-r--r--plugins/exec/exec_plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/exec/exec_plugin.c b/plugins/exec/exec_plugin.c
index 78aff6ab8..673fb6088 100644
--- a/plugins/exec/exec_plugin.c
+++ b/plugins/exec/exec_plugin.c
@@ -123,6 +123,8 @@ static void remmina_plugin_exec_init(RemminaProtocolWidget *gp)
gtk_text_view_set_editable(GTK_TEXT_VIEW(gpdata->log_view), FALSE);
gtk_text_view_set_left_margin (GTK_TEXT_VIEW (gpdata->log_view), 20);
gtk_text_view_set_right_margin (GTK_TEXT_VIEW (gpdata->log_view), 20);
+ gtk_widget_set_hexpand(gpdata->log_view, TRUE);
+ gtk_widget_set_vexpand(gpdata->log_view, TRUE);
gpdata->log_buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (gpdata->log_view));
gpdata->sw = gtk_scrolled_window_new ();
gtk_widget_set_size_request (gpdata->sw, 640, 480);