From 7fc9967722fe960ea426e51b0ee0b651f235de3f Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Tue, 5 Nov 2002 02:03:46 +0000 Subject: [PATCH] Remove special Mac treatment for now, since fltk changed its behaviour --- Fltk/Callbacks.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Fltk/Callbacks.cpp b/Fltk/Callbacks.cpp index 8e07e3f1d8..77d0c19534 100644 --- a/Fltk/Callbacks.cpp +++ b/Fltk/Callbacks.cpp @@ -1,4 +1,4 @@ -// $Id: Callbacks.cpp,v 1.146 2002-11-01 22:27:33 geuzaine Exp $ +// $Id: Callbacks.cpp,v 1.147 2002-11-05 02:03:46 geuzaine Exp $ // // Copyright (C) 1997 - 2002 C. Geuzaine, J.-F. Remacle // @@ -964,7 +964,12 @@ void opt_visibility_number_cb(CALLBACK_ARGS){ // Help Menu -#ifdef __APPLE__ + // fltk guys still have to decode how to map apple keys. Let's just + // keep the "Windows-Unix" style stuff at the moment. We might want + // to change all occurences of FL_CTRL with FL_COMMAND in the + // future. FL_COMMAND would get mapped to Ctrl on Windows/Unix and to + // Cmd on Macs. +#ifdef __APPLE__NOT_USED_ANYMORE #define XX "Cmd " #else #define XX "Ctrl" -- GitLab