After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 339645 - [2.7.5.1] caps-lock disables keyboard shortcuts
[2.7.5.1] caps-lock disables keyboard shortcuts
Status: RESOLVED FIXED
Product: gthumb
Classification: Other
Component: general
2.7.x
Other Linux
: Normal minor
: ---
Assigned To: Paolo Bacchilega
Paolo Bacchilega
Depends on:
Blocks:
 
 
Reported: 2006-04-24 22:29 UTC by CRV§ADER/KY
Modified: 2006-05-08 18:14 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description CRV§ADER/KY 2006-04-24 22:29:04 UTC
whenever CAPS LOCK is enabled, all keyboard shortcuts that use alphabet letters don't work any more.

Solution: 
replace
switch(key_pressed) {yadayadayada}
with
switch(to_lower(key_pressed)) {yadayadayada}

or whatever handles the keyboards shortcut.
If you want to catch Shift+key, test the shift modifier instead of the case of the letter.
Comment 1 Paolo Bacchilega 2006-05-08 18:14:15 UTC
fixed in current CVS, thanks.