mirror of https://github.com/fltk/fltk
Reverted changes done in svn r 7788 for STR #2420 ("Tab-Navigation focuses
non-active_r() widgets"). This must be investigated further, and if necessary, solved differently. STR #2420 will be reopened... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8615 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
85a3534ee3
commit
08b93ec972
1
CHANGES
1
CHANGES
|
@ -165,7 +165,6 @@ CHANGES IN FLTK 1.3.0
|
|||
- Fixed Unicode support for Fl_Text_* widgets
|
||||
- Fixed menu and shortcut handling (STR #2243)
|
||||
- Fixed fltk-config to give --libs on one line (STR #2408)
|
||||
- Fixed tab key navigation to inactive widgets (STR #2420)
|
||||
- Fixed outside label redraw damage areas (STR #2436)
|
||||
- Fixed compile errors when HAVE_LIBJPEG was not defined
|
||||
(STR #2382)
|
||||
|
|
|
@ -752,9 +752,7 @@ public:
|
|||
&& visible()) but is faster.
|
||||
\retval 0 if the widget takes no events
|
||||
*/
|
||||
unsigned int takesevents() const {
|
||||
return !output() && active_r() && visible_r();
|
||||
}
|
||||
unsigned int takesevents() const {return !(flags_&(INACTIVE|INVISIBLE|OUTPUT));}
|
||||
|
||||
/**
|
||||
Checks if the widget value changed since the last callback.
|
||||
|
|
Loading…
Reference in New Issue