FLTK logo

STR #32

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 Home  |  Articles & FAQs  |  Bugs & Features  |  Documentation  |  Download  |  Screenshots  ]
 

Return to Bugs & Features | Roadmap 1.1 | SVN ⇄ GIT ]

STR #32

Application:FLTK Library
Status:1 - Closed w/Resolution
Priority:4 - High, e.g. key functionality not working
Scope:2 - Specific to an operating system
Subsystem:MacOS
Summary:Cannot enter {}|\[] on OSX with German keyboard
Version:1.1.3
Created By:christian.bucher.bauing.uni-weimar
Assigned To:mike
Fix Version:1.1.4
Update Notification:

Receive EMails Don't Receive EMails

Trouble Report Files:


Name/Time/Date Filename/Size  
 
#1 christian.bucher.bauing.uni-weimar
13:52 May 09, 2003
Fl_compose.cxx
5k
 
     

Trouble Report Comments:


Name/Time/Date Text  
 
#1 christian.bucher.bauing.uni-weimar
13:50 May 09, 2003
The combination of the keys Alt+letter is generally needed by the German keymapping on OSX. Fl::compose currently disables this combination making it impossible to enter characters such as {}|\[]. A patch in Fl_compose.cxx could be implemented as given here:

#if defined (__APPLE__)
  if (e_state & (FL_META) && !(ascii & 128)) return 0;
#else
  if (e_state & (FL_ALT|FL_META) && !(ascii & 128)) return 0;
#endif

I've only tested on OSX (10.2.6) with fltk-1.1.1 throgh 1.1.3
Cheers,
Christian
 
 
#2 mike
08:20 May 20, 2003
Thanks, I've added this to CVS for the 1.1.4 release.  
     

Return to Bugs & Features ]

 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.