Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save relwen/3dc7bd84117db984af16af8a0206e894 to your computer and use it in GitHub Desktop.
Save relwen/3dc7bd84117db984af16af8a0206e894 to your computer and use it in GitHub Desktop.
try {
Field field = CursorWindow.class.getDeclaredField("sCursorWindowSize");
field.setAccessible(true);
field.set(null, 100 * 1024 * 1024); //the 100MB is the new size
} catch (Exception e) {
e.printStackTrace();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment