Fix print icon.

This commit is contained in:
Eric Huss 2020-09-22 13:24:13 -07:00
parent d1f5ecc103
commit e6ac8ecdd9
1 changed files with 3 additions and 3 deletions

View File

@ -648,9 +648,9 @@ fn make_data(
data.insert("playground_copyable".to_owned(), json!(true));
}
data.insert("print_enable".to_owned(), json!(!html_config.print.enable));
data.insert("fold_enable".to_owned(), json!((html_config.fold.enable)));
data.insert("fold_level".to_owned(), json!((html_config.fold.level)));
data.insert("print_enable".to_owned(), json!(html_config.print.enable));
data.insert("fold_enable".to_owned(), json!(html_config.fold.enable));
data.insert("fold_level".to_owned(), json!(html_config.fold.level));
let search = html_config.search.clone();
if cfg!(feature = "search") {