menu widget: autocomplete and same keypress several times

menu widget: autocomplete and same keypress several times

Hi All,
i am using jquery-ui 1.11.4 with selectmenu autocomplete

My selectmenu has items with values like 4, 44, 5, 55, 555
pressing the keys(4 or 5) multiple times the autocomplete feature selects only the items with value 4 or 5 but not the others

i found the problem in the ui.menu widget (jquery-ui.js)
  1. _keydown: function( event ) {
  2. ........
  3.         default:
  4.             preventDefault = false;
  5.             prev = this.previousFilter || "";
  6.             character = String.fromCharCode( event.keyCode );
  7.             skip = false;

  8.             clearTimeout( this.filterTimer );

  9.            if ( character === prev ) {
  10.                 skip = true;
  11.             } else {
  12.                 character = prev + character;
  13.             }
if i comment out the "skip check" it works
the autocomplete feature select items with all values 4, 44, 5, 55 and 555

I don't want to change the jQuery-UI files
What are the opportunities to solve this problem (bug?)