Mouse accessibility and onscreen keyboard should be enabled on config files or command line.

This commit is contained in:
Pere Pujal i Carabantes 2011-02-26 00:01:43 +00:00
parent 20f154f6da
commit c355c1d249

View file

@ -964,8 +964,8 @@ static void update_canvas(int x1, int y1, int x2, int y2)
/* Globals: */ /* Globals: */
static int mouseaccessibility = 1; static int mouseaccessibility = 0;
static int onscreen_keyboard = 1; static int onscreen_keyboard = 0;
static int disable_screensaver; static int disable_screensaver;
#ifdef NOKIA_770 #ifdef NOKIA_770
static int fullscreen = 1; static int fullscreen = 1;
@ -22887,6 +22887,7 @@ int button(int id, int x, int y)
event.key.keysym.sym = SDLK_ESCAPE; event.key.keysym.sym = SDLK_ESCAPE;
event.key.keysym.mod = KMOD_NONE; event.key.keysym.mod = KMOD_NONE;
event.key.keysym.unicode = 27; event.key.keysym.unicode = 27;
} }
else if (ide == 2) else if (ide == 2)
{ {