<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - F3 executes uno:RepeatSearch from the FindBar TextFind widget when not defined as the shortcut"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=102307#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - F3 executes uno:RepeatSearch from the FindBar TextFind widget when not defined as the shortcut"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=102307">bug 102307</a>
              from <span class="vcard"><a class="email" href="mailto:mahfiaz@gmail.com" title="mahfiaz <mahfiaz@gmail.com>"> <span class="fn">mahfiaz</span></a>
</span></b>
        <pre>It still happens in 6.2.2.2

svx/source/tbxctrls/tbunosearchcontrollers.cxx@269

            // Execute the search when Return, Ctrl-G or F3 pressed
            if ( KEY_RETURN == nCode || (bMod1 && (KEY_G == nCode)) || (KEY_F3
== nCode) )

should be:

            // Execute the search when Return or Ctrl-G is pressed
            if ( KEY_RETURN == nCode || (bMod1 && (KEY_G == nCode)) )</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>