mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-08 03:02:30 +00:00
Fix Merzlya display (PR #474)
This commit is contained in:
@@ -225,6 +225,12 @@ ElementDownloadList::receive_change_view(const std::string& name) {
|
||||
|
||||
void
|
||||
ElementDownloadList::toggle_layout() {
|
||||
rpc::call_command("download.list.layout.set", (rpc::call_command_value("download.list.layout") + 1)%2);
|
||||
const std::string layout_name = rpc::call_command_string("ui.torrent_list.layout");
|
||||
|
||||
if (layout_name == "full") {
|
||||
rpc::call_command("ui.torrent_list.layout.set", "compact");
|
||||
} else if (layout_name == "compact") {
|
||||
rpc::call_command("ui.torrent_list.layout.set", "full");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user