https://bugs.documentfoundation.org/show_bug.cgi?id=146906
Heiko Tietze <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #20 from Heiko Tietze <[email protected]> --- (In reply to Albrecht Müller from comment #13) > Open some Calc document. Press Ctrl+Shift+F6. Then press the cursor keys... Does not work for me (Linux/kf5). But the function is known. According to sc/README.md (https://opengrok.libreoffice.org/xref/core/sc/README.md?r=ea5641ba) | ### CTRL+SHIFT+F6 | Dumps the SfxItemSet representing the cell properties' of the | current selection as a xml file. The file will be named dump.xml Looking into the code (sc/source/ui/view/gridwin.cxx) I found this: ScGridWindow::KeyInput(const KeyEvent& rKEvt) ... #ifdef DBG_UTIL if (rKeyCode.IsMod1() && rKeyCode.IsShift()) ... else if (rKeyCode.GetCode() == KEY_F6) dumpCellProperties(); I'd prefer to remove this shortcut(s, there are some more). Eike, any concerns? (In reply to Albrecht Müller from comment #14) > The function key F6 is used to navigate through various parts of an > application. The combination with the Shift key usually (there are > exceptions) reverses the direction of navigation. Thanks for your thorough analysis. Would come to a slightly different conclusion: F6 (with modifiers) is used to make the UI accessible. We have this rule incorporated in the sidebar HIG (https://wiki.documentfoundation.org/Design/Guidelines/Sidebar). That's why Shift+Ctrl+F6 sounds best to me. Side note: This website is informative for comparing shortcuts https://defkey.com/what-means/alt-f5 and https://defkey.com/search?irq=Shift%20%2B%20Alt%20%2B%20F6 -- You are receiving this mail because: You are the assignee for the bug.
