show yomichan updated message only when shift to scan is disabled

This commit is contained in:
Alex Yatskov 2017-03-05 16:20:01 -08:00
parent efc5be4dac
commit 0a75e14d93
2 changed files with 3 additions and 3 deletions

View File

@ -51,11 +51,11 @@
<h3>Scanning Options</h3>
<div class="checkbox">
<label><input type="checkbox" id="hold-shift-to-scan"> Hold <kbd>Shift</kbd> to scan</label>
<label><input type="checkbox" id="middle-mouse-button-scan"> Middle mouse button scanning</label>
</div>
<div class="checkbox">
<label><input type="checkbox" id="middle-mouse-button-scan"> Middle mouse button scanning</label>
<label><input type="checkbox" id="hold-shift-to-scan"> Hold <kbd>Shift</kbd> to scan</label>
</div>
<div class="checkbox">

View File

@ -203,7 +203,7 @@ window.driver = new class {
handleError(error, textSource) {
if (window.orphaned) {
if (textSource) {
if (textSource && this.options.scanning.requireShift) {
this.popup.showNextTo(textSource.getRect());
this.popup.showOrphaned();
}