>Yep, this happens over here too
that the cursor keys not work in a html input box have nothing to do if SDL or not,because inside a html page there cant use amiga GUI Elememts i think.
so i guess on OS4 or MOS netsurf move the cursor in a html textbox too not work and only backspace work ?
>Can someone kick usergroup.library ? Why use it anyway ?!
I dont know for what ixemul need usergroup.library, but i think when have AOS accessing rights, so for example java script can only access 1 dir is usefull.so i dont remove it.but what usergroup library really can do here i was too lazy to read.It work in that way and wy should i change a running system ;-)
/* only use usergroup stuff when AmiTCP is started only */
/* I call OpenLibrary() with the full path since
* usergroup.library might open yet - some people bypass the
* "login" command which loads usergroup.library
*/
#ifdef NATIVE_MORPHOS
p->u_UserGroupBase = OpenLibrary("usergroup.library",1);
#else
p->u_UserGroupBase = OpenLibrary("AmiTCP:libs/usergroup.library",1);
#endif
if (p->u_UserGroupBase) {
struct TagItem ug_list[] = {
{ UGT_INTRMASK, SIGBREAKB_CTRL_C } ,
{ UGT_ERRNOPTR(sizeof(int)), (ULONG)ix_u->u_errno },
{ TAG_END }
};
ug_SetupContextTagList(progname, ug_list);
p->u_networkprotocol = IX_NETWORK_AMITCP;
break;
}
}