Merge pull request #2679 from r0mille/master
fixes cutoff for bottom option when selecting with keyboard
This commit is contained in:
commit
2b90de5012
1 changed files with 1 additions and 1 deletions
|
@ -1532,7 +1532,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rb = results.offset().top + results.outerHeight(true);
|
rb = results.offset().top + results.outerHeight(false);
|
||||||
if (hb > rb) {
|
if (hb > rb) {
|
||||||
results.scrollTop(results.scrollTop() + (hb - rb));
|
results.scrollTop(results.scrollTop() + (hb - rb));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue