Commit 06af9372de7c38e2e3237abddc82457a5bd87191

Authored by perry.werneck@gmail.com
1 parent 7cdc2a79
Exists in master and in 1 other branch develop

Implementando opcao para ativar opcao de 8 cores via linha de comando

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
widget.c
... ... @@ -1438,6 +1438,12 @@ void v3270_set_session_name(GtkWidget *widget, const gchar *name)
1438 1438 GTK_V3270(widget)->session_name = g_strdup(name);
1439 1439 }
1440 1440  
  1441 +void v3270_set_session_options(GtkWidget *widget, LIB3270_OPTION options)
  1442 +{
  1443 + g_return_if_fail(GTK_IS_V3270(widget));
  1444 + lib3270_set_options(GTK_V3270(widget)->host,options);
  1445 +}
  1446 +
1441 1447 gboolean v3270_is_connected(GtkWidget *widget)
1442 1448 {
1443 1449 g_return_val_if_fail(GTK_IS_V3270(widget),FALSE);
... ...