[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] Alert shortcuts



On Mon, 2011-01-03 at 22:03 +0100, Helmut Karlowski wrote:
> Am 03.01.2011, 21:46 Uhr, schrieb Jo Even Skarstein <joska@online.no>:
> 
> > I just noticed a small problem with the automatically generated
> > shortcuts in alert-buttons. They're case-sensitive, so if 'E' is
> > underlined in the "Exit"-button you can't just hit Alt+e. You must press
> > Alt+Shift+e.
> 
> I just tested with an alert that says 'Yes' and Alt+y works. Give me a  
> test-app!

#include <gem.h>

void main(void)
{
	int a = appl_init();
	form_alert(1, "[1]Alt+E does not work. Just E does.][Save|Exit]");
	appl_exit();
}

> BTW: In alerts you can just type the letter without Alt.

That works. Alt+E also works. Alt+e doesn't. The strange thing is that
it seems to only affect "E"-shortcuts. The other hotkey (Alt+s/S] works
as expected. This is with trunk XaAES from last Thursday.

Jo Even