summaryrefslogtreecommitdiff
path: root/src/fl_shortcut.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2024-03-19 15:09:14 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2024-03-19 15:39:18 +0100
commitaf90841fbc0a7090d7f3979c4d71aeeec1fbcb4b (patch)
tree8c768ffc47e08b5031110997b595e930e3e1a754 /src/fl_shortcut.cxx
parent3a8daf70c05692d73ded3a64d004a685c5ea2df6 (diff)
Update dependencies, whitespace, and Fl_File_Chooser.cxx
Rewrite src/Fl_File_Chooser.cxx from its .fl source file
Diffstat (limited to 'src/fl_shortcut.cxx')
-rw-r--r--src/fl_shortcut.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_shortcut.cxx b/src/fl_shortcut.cxx
index a1dba59d4..640dd6963 100644
--- a/src/fl_shortcut.cxx
+++ b/src/fl_shortcut.cxx
@@ -77,7 +77,7 @@ int Fl::test_shortcut(unsigned int shortcut) {
// kludge so that Ctrl+'_' works (as opposed to Ctrl+'^_'):
if ((shift&FL_CTRL) && key >= 0x3f && key <= 0x5F
&& firstChar==(key^0x40)) return 1; // firstChar should be within a-z
-
+
return 0;
}