[Libreoffice-bugs] [Bug 102307] F3 executes uno:RepeatSearch from the FindBar TextFind widget when not defined as the shortcut
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Sat Mar 30 18:05:19 UTC 2019
https://bugs.documentfoundation.org/show_bug.cgi?id=102307
--- Comment #6 from mahfiaz <mahfiaz at gmail.com> ---
It still happens in 6.2.2.2
svx/source/tbxctrls/tbunosearchcontrollers.cxx at 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)) )
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20190330/c1046b10/attachment.html>
More information about the Libreoffice-bugs
mailing list