Commit 111e43599a6ca0ecdda7d36931909174cee4d6e6

Authored by Perry Werneck
2 parents b7d15186 99070371
Exists in v5.2

Merge branch 'master' into fix_print_issues

Showing 1 changed file with 1 additions and 4 deletions   Show diff stats
src/pw3270/print.c
... ... @@ -67,13 +67,10 @@
67 67 // Create and setup dialog
68 68 //
69 69 GtkPrintOperation * operation = v3270_print_operation_new(widget,src);
70   -
71 70 {
72 71 // Setup async mode
73   - gboolean async = get_boolean_from_config("print","allow_async",FALSE);
74   -
  72 + gboolean async = get_boolean_from_config("terminal","allow_async_print",FALSE);
75 73 gtk_print_operation_set_allow_async(operation,async);
76   - g_message("Allow async is %s",async ? "TRUE" : "FALSE");
77 74 }
78 75  
79 76 load_print_operation_settings(operation);
... ...