]> git.sesse.net Git - remoteglot/commitdiff
If the PV is hidden by exploration stuff, it should not be possible to inadvertedly...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 22 Mar 2016 21:29:59 +0000 (22:29 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 22 Mar 2016 21:29:59 +0000 (22:29 +0100)
www/js/remoteglot.js

index a991a0242388fc3bee32b2f9143143869dff825a..4e7a2efc262d73e2d6a4dac6aeb5ea11dc410a66 100644 (file)
@@ -1647,6 +1647,9 @@ var update_move_highlight = function() {
                        display_lines.push(current_display_line);
                        $("#pv").html(print_pv(display_lines.length - 1));
                        display_line_num = display_lines.length - 1;
+
+                       // Clear out the PV, so it's not selected by anything later.
+                       display_lines[1].pretty_pv = [];
                }
 
                highlighted_move = $("#automove" + display_line_num + "-" + (current_display_move - current_display_line.start_display_move_num));