Commit 628403126d870deaa897d986c91c968822d70437
1 parent
47008807
Exists in
master
and in
5 other branches
Acertando alinhamento dos campos de entrada na caixa de transferência de arquivos
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
src/pw3270/filetransfer.c
... | ... | @@ -377,6 +377,8 @@ static void run_ft_dialog(GObject *action, GtkWidget *widget, struct ftdialog *d |
377 | 377 | { |
378 | 378 | gchar *val = get_attribute(action,dlg,gtk_widget_get_name(GTK_WIDGET(dlg->parm[f]))); |
379 | 379 | |
380 | + gtk_entry_set_alignment(GTK_ENTRY(dlg->parm[f]),1); | |
381 | + | |
380 | 382 | if(val && *val) |
381 | 383 | gtk_entry_set_text(dlg->parm[f],val); |
382 | 384 | ... | ... |