[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2026-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

--- Comment #6 from QA Administrators  ---
Dear Tyler,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2024-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

--- Comment #5 from V Stuart Foote  ---
(In reply to Heiko Tietze from comment #4)
> Reminds me on bug 146906 comment 23. And there is
> 
> ScGridWindow::KeyInput()
> 
> #ifdef DBG_UTIL
> 
> if (rKeyCode.IsMod1() && rKeyCode.IsShift())
> ...
> else if (rKeyCode.GetCode() == KEY_F6)
> 
> 
> It looks like a bug when reserved keys are ctrl+F6 and shift+f6 making
> ctrl+shift+f6 disabled too. Test-wise I commented out
> vcl::KeyCode(KEY_F6,KEY_MOD1) and could assign a command to ctrl+shift+f6.
> 
> Ultimately we should not have any hard-coded key and show the actual
> assignment in the customization dialog.

OK, but there is a distinction to be made between shortcuts baked into UNO and
other editshell based or VCL level shortcuts. Real issue is that the later
shortcuts do not make it onto the customize dialog--even if non-editable.

Current "reserved" mechanism seems dated.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2024-04-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||6906

--- Comment #4 from Heiko Tietze  ---
Reminds me on bug 146906 comment 23. And there is

ScGridWindow::KeyInput()

#ifdef DBG_UTIL

if (rKeyCode.IsMod1() && rKeyCode.IsShift())
...
else if (rKeyCode.GetCode() == KEY_F6)


It looks like a bug when reserved keys are ctrl+F6 and shift+f6 making
ctrl+shift+f6 disabled too. Test-wise I commented out
vcl::KeyCode(KEY_F6,KEY_MOD1) and could assign a command to ctrl+shift+f6.

Ultimately we should not have any hard-coded key and show the actual assignment
in the customization dialog.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2024-04-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

V Stuart Foote  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #3 from V Stuart Foote  ---
(In reply to Regina Henschel from comment #2)
> Ctrl+Shift+F6 belongs to the accessibility shortcuts of LibreOffice and
> works as intended.
> If a sheet in Calc is divided into two parts (menu View -> Split Window),
> then the shortcut Ctrl+Shift+F6 gives access to the dividing line so that it
> can be moved with the arrow keys.
> 
> BTW, combinations with F6 and F10 are often accessibility shortcuts.

Yes, but the Key_F6,Key_MOD1,Key_SHIFT is *not* a VCL reserved shortcut as
listed in ReservedKeys[] array in svapp.cxx [1]; just Key_F6,Key_MOD1 is on the
reserved list.

Also, think the svapp.cxx only defines reserved two-key sequences, so why is
the three-key sequence showing as reserved? Suspect a logic error (handling of
both Key_SHIFT and Key_MOD1) in assigning it as reserved in acccfg.cxx [2]?

=-ref-=
[1]
https://opengrok.libreoffice.org/xref/core/vcl/source/app/svapp.cxx?r=e1c59fd5#99
and at #307
[2]
https://opengrok.libreoffice.org/xref/core/cui/source/customize/acccfg.cxx?r=fa869ef6#1067

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2024-04-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

Regina Henschel  changed:

   What|Removed |Added

 CC||[email protected]

--- Comment #2 from Regina Henschel  ---
Ctrl+Shift+F6 belongs to the accessibility shortcuts of LibreOffice and works
as intended.
If a sheet in Calc is divided into two parts (menu View -> Split Window), then
the shortcut Ctrl+Shift+F6 gives access to the dividing line so that it can be
moved with the arrow keys.

BTW, combinations with F6 and F10 are often accessibility shortcuts.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2024-04-28 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||98259
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEW
 OS|Linux (All) |All
 CC||[email protected],
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Dieter  ---
I confirm it with

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 7c2ed9919d6d9d286d9062b91577d6bb2b7de8aa
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

cc: Design-Team for information about intended behaviour


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98259
[Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160465] Ctrl+Shift+F6 is marked reserved, but doesn't do anything

2024-04-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160465

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.