Improve recognition of re-scaling shortcuts - cont'd

This commit is contained in:
ManoloFLTK 2024-02-11 19:10:39 +01:00
parent 4ea058da0a
commit cf551ddf5a
1 changed files with 4 additions and 3 deletions

View File

@ -482,10 +482,11 @@ int Fl_Screen_Driver::scale_handler(int event)
if (!keyboard_screen_scaling) return 0;
if ( event != FL_SHORTCUT || !Fl::event_command() ) return 0;
const char *key = Fl::event_text();
char ek[2] = "";
if (!key || !*key) {
static char ek;
ek = Fl::event_key() & ~(FL_SHIFT+FL_COMMAND);
key = &ek;
ek[0] = (char)(Fl::event_key() & 0xff);
ek[1] = '\0';
key = (const char *)ek;
}
enum {none, zoom_in, zoom_out, zoom_reset} zoom = none;
if (key[0] == '0' || (strcmp(key, "à") == 0 /* for Fr keyboards*/)) zoom = zoom_reset;