
Feb. 24, 2009
12:26 a.m.
Tim wrote:
looking in events.h, I think (event_state() & (SHIFT | CTRL)) would work.
Good idea. It does not work as expected though. But this does: ((event_state() & (SHIFT | CTRL)) == (SHIFT + CTRL))
err, yes :) or probably event_state() == (SHIFT | CTRL) in this case.
Now that we know how to check for multiple modifiers, does somebody want to implement it?
I lean toward not adding features to this patch yet. (Continuing to add features before getting anything into the tree caused dillo not to get frames support, and that was an unfortunate incident all around.)