Martin Henne wrote: > is it possible to deactivate the dotted frame in my gui, that > indicates, which button the active button is (which one gets > pressed when I press <space>)?
yes, use button->visible_focus(0); However, this does also affect keyboard navigation (e.g. with TAB). Widgets that have visible_focus turned off are skipped. But if you use a touchscreen this will probably not matter. Albrecht _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

