Fixed dialog to configure on-screen buttons
This commit is contained in:
8
bugs.txt
8
bugs.txt
@@ -3,6 +3,8 @@ Known bugs
|
|||||||
|
|
||||||
- With 4:3 screen aspect ratio the on-screen buttons are not shown on the inactive part of screen.
|
- With 4:3 screen aspect ratio the on-screen buttons are not shown on the inactive part of screen.
|
||||||
|
|
||||||
|
- Put video at the center of the screen with 4:3 aspect ratio option
|
||||||
|
|
||||||
- Calling SDL_SetVideoMode() with SDL 1.3 several times makes it crash.
|
- Calling SDL_SetVideoMode() with SDL 1.3 several times makes it crash.
|
||||||
|
|
||||||
- Calling SDL_Init()/SDL_Quit() several times will make SDL 1.2 crash.
|
- Calling SDL_Init()/SDL_Quit() several times will make SDL 1.2 crash.
|
||||||
@@ -11,15 +13,13 @@ Known bugs
|
|||||||
|
|
||||||
- 32-bpp color mode does not work with SW video surface, 24-bpp and 32-bpp mode does not work with SDL_HWSURFACE.
|
- 32-bpp color mode does not work with SW video surface, 24-bpp and 32-bpp mode does not work with SDL_HWSURFACE.
|
||||||
|
|
||||||
|
- Set on-screen button
|
||||||
|
|
||||||
Requested features
|
Requested features
|
||||||
==================
|
==================
|
||||||
|
|
||||||
- Support for resuming download of partially-downloaded files.
|
|
||||||
|
|
||||||
- Perform a check for free space available on SD card before writing there, and write to the internal storage if SD card is unplugged.
|
- Perform a check for free space available on SD card before writing there, and write to the internal storage if SD card is unplugged.
|
||||||
|
|
||||||
- Force SW video mode from AndroidAppSettings.cfg, ignore SDL_HWSURFACE if app does not explicitly support it.
|
|
||||||
|
|
||||||
- Split Settings.java into several files
|
- Split Settings.java into several files
|
||||||
|
|
||||||
- Show/hide screen controls with longpress on Text Edit button.
|
- Show/hide screen controls with longpress on Text Edit button.
|
||||||
|
|||||||
@@ -2254,7 +2254,7 @@ class Settings
|
|||||||
|
|
||||||
public void onTouchEvent(final MotionEvent ev)
|
public void onTouchEvent(final MotionEvent ev)
|
||||||
{
|
{
|
||||||
if(Globals.ScreenKbControlsLayout.length >= currentButton)
|
if(currentButton >= Globals.ScreenKbControlsLayout.length)
|
||||||
{
|
{
|
||||||
setupButton(false);
|
setupButton(false);
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ SdlVideoResize=y
|
|||||||
SdlVideoResizeKeepAspect=n
|
SdlVideoResizeKeepAspect=n
|
||||||
CompatibilityHacks=n
|
CompatibilityHacks=n
|
||||||
CompatibilityHacksStaticInit=n
|
CompatibilityHacksStaticInit=n
|
||||||
CompatibilityHacksTextInputEmulatesHwKeyboard=y
|
CompatibilityHacksTextInputEmulatesHwKeyboard=n
|
||||||
CompatibilityHacksPreventAudioChopping=n
|
CompatibilityHacksPreventAudioChopping=n
|
||||||
CompatibilityHacksAppIgnoresAudioBufferSize=n
|
CompatibilityHacksAppIgnoresAudioBufferSize=n
|
||||||
AppUsesMouse=y
|
AppUsesMouse=y
|
||||||
|
|||||||
Reference in New Issue
Block a user