| | 458 | | signal_add("gui page scrolled", (SIGNAL_FUNC) sig_statusbar_more_updated);
| | | 459 | | signal_add("window changed", (SIGNAL_FUNC) sig_statusbar_more_updated);
| | | 460 | | signal_add_last("gui print text finished", (SIGNAL_FUNC) sig_statusbar_more_updated);
| | | 461 | | signal_add_last("command clear", (SIGNAL_FUNC) sig_statusbar_more_updated);
| | | 462 | | signal_add_last("command scrollback", (SIGNAL_FUNC) sig_statusbar_more_updated);
| | | 463 | | | | | 464 | | | | | 465 | | last_lag = 0; last_lag_unknown = FALSE;
| | | 466 | | signal_add("server lag", (SIGNAL_FUNC) sig_server_lag_updated);
| | | 467 | | signal_add("window changed", (SIGNAL_FUNC) lag_check_update);
| | Wrong Number of Parameters | 468 | | signal_add("window server changed", (SIGNAL_FUNC) lag_check_update);
| | | 469 | | lag_timeout_tag = g_timeout_add(5000, (GSourceFunc) sig_lag_timeout, NULL);
| | | 470 | | | | | 471 | | | | | 472 | | input_entries = g_hash_table_new((GHashFunc) g_str_hash, | | | 473 | | (GCompareFunc) g_str_equal); | | | 474 | | | | | 475 | | read_settings(); | | | 476 | | signal_add_last("setup changed", (SIGNAL_FUNC) read_settings);
| | | 477 | | } | | | 478 | | |
|