Commit b9f8510eaa7cfd805c180dca475c5b8da89124f5

Authored by Perry Werneck
1 parent e4ac7e46
Exists in v5.2

Saving settings in the dialog is no more necessary; the v3270 widget

fires a "save-settings" signal.
Showing 1 changed file with 5 additions and 0 deletions   Show diff stats
src/pw3270/hostdialog.c
... ... @@ -46,6 +46,10 @@
46 46  
47 47 v3270_select_host(widget);
48 48  
  49 + /*
  50 +
  51 + No needed! The dialog fires a "save-settings" signal.
  52 +
49 53 set_string_to_config("terminal","oversize",pw3270_get_oversize(gtk_widget_get_toplevel(widget)));
50 54 set_integer_to_config("terminal","model_number",lib3270_get_model_number(hSession));
51 55 set_string_to_config("terminal","model_name","%s",lib3270_get_model_name(hSession));
... ... @@ -56,6 +60,7 @@
56 60 g_autofree gchar * lunames = v3270_get_lunames(widget);
57 61 set_string_to_config("terminal","lu_names",lunames);
58 62 }
  63 + */
59 64  
60 65 }
61 66  
... ...