Don't display uTP checkbox in non-uTP builds (gtk).

Reported by Rolcol.
This commit is contained in:
Juliusz Chroboczek 2011-02-18 22:22:02 +00:00
parent 352981ee03
commit ee86584263
1 changed files with 2 additions and 0 deletions

View File

@ -1214,6 +1214,7 @@ networkPage( GObject * core )
w = new_spin_button( TR_PREFS_KEY_PEER_LIMIT_GLOBAL, core, 1, 3000, 5 );
hig_workarea_add_row( t, &row, _( "Maximum peers _overall:" ), w, NULL );
#ifdef WITH_UTP
hig_workarea_add_section_divider( t, &row );
hig_workarea_add_section_title( t, &row, _( "Options" ) );
@ -1222,6 +1223,7 @@ networkPage( GObject * core )
s = _( "uTP is a tool for reducing network congestion." );
gtr_widget_set_tooltip_text( w, s );
hig_workarea_add_wide_control( t, &row, w );
#endif
w = gtk_button_new_with_mnemonic( _( "Edit GNOME Proxy Settings" ) );
g_signal_connect( w, "clicked", G_CALLBACK( onGNOMEClicked ), data );