diff --git a/src/ui/element_download_list.cc b/src/ui/element_download_list.cc index 3369b045..50760f2a 100644 --- a/src/ui/element_download_list.cc +++ b/src/ui/element_download_list.cc @@ -25,10 +25,10 @@ ElementDownloadList::ElementDownloadList() { if (m_view == NULL) throw torrent::internal_error("View \"main\" must be present to initialize the main display."); - m_bindings['\x13'] = std::bind(&ElementDownloadList::receive_command, this, "d.start="); - m_bindings['\x0B'] = std::bind(&ElementDownloadList::receive_command, this, "d.ignore_commands.set=1; d.stop=; d.close="); - m_bindings['\x12'] = std::bind(&ElementDownloadList::receive_command, this, "d.complete.set=0; d.check_hash="); - m_bindings['\x05'] = std::bind(&ElementDownloadList::receive_command, this, "f.multicall=,f.set_create_queued=0,f.set_resize_queued=0; print=\"Queued create/resize of files in torrent.\""); + m_bindings['\x13'] = std::bind(&ElementDownloadList::receive_command, this, "d.start="); + m_bindings['\x0B'] = std::bind(&ElementDownloadList::receive_command, this, "d.ignore_commands.set=1; d.stop=; d.close="); + m_bindings['\x12'] = std::bind(&ElementDownloadList::receive_command, this, "d.complete.set=0; d.check_hash="); + m_bindings['\x05'] = std::bind(&ElementDownloadList::receive_command, this, "f.multicall=,f.set_create_queued=0,f.set_resize_queued=0; print=\"Queued create/resize of files in torrent.\""); m_bindings['+'] = std::bind(&ElementDownloadList::receive_next_priority, this); m_bindings['-'] = std::bind(&ElementDownloadList::receive_prev_priority, this);