(trunk gtk) #1963: Use tooltip to notify user of added torrent

This commit is contained in:
Charles Kerr
2009-06-11 16:17:48 +00:00
parent c2dd366154
commit ebfd93fe7b
7 changed files with 54 additions and 31 deletions

View File

@@ -123,7 +123,7 @@ addResponseCB( GtkDialog * dialog,
if( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( data->run_check ) ) )
tr_torrentStart( tr_torrent_handle( data->gtor ) );
tr_core_add_torrent( data->core, data->gtor );
tr_core_add_torrent( data->core, data->gtor, FALSE );
if( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( data->trash_check ) ) )
@@ -426,7 +426,7 @@ onAddDialogResponse( GtkDialog * dialog,
: PREF_FLAG_FALSE;
GSList * l = gtk_file_chooser_get_filenames( chooser );
tr_core_add_list( core, l, start, prompt );
tr_core_add_list( core, l, start, prompt, FALSE );
}
gtk_widget_destroy( GTK_WIDGET( dialog ) );