Skip to content
Snippets Groups Projects
  1. Dec 04, 2012
    • Kurt Partridge's avatar
      Fix crashes related to setSpan(-1 ... -1) errors · b10ec531
      Kurt Partridge authored
      Fixes b/7652661
      
      In some circumstnaces, when hiding the window, the logger tries to capture the TextView contents
      and restore the cursor position based on the values stored in LatinIME.  However, the IME may not
      know the cursor position.
      
      This fix does two things 1) doesn't try to reposition the cursor if the TextView contents are not
      to be captured, and 2) if the cursor position is unknown (i.e., == -1), doesn't try to move it back.
      
      Change-Id: I3976aaccf58c18f892c3a8530218ae52bcac9989
      b10ec531
  2. Dec 03, 2012
  3. Nov 30, 2012
  4. Nov 29, 2012
  5. Nov 28, 2012
  6. Nov 27, 2012
  7. Nov 22, 2012
  8. Nov 21, 2012
  9. Nov 20, 2012
    • Tadashi G. Takaoka's avatar
      Reorganize currency keys · c27e899d
      Tadashi G. Takaoka authored
      Add Rial(ar), Indian Rupee(hi), Tugrik(mn), Baht(th), Hryvnia(uk),
      Dong(vi) currency sign keys to symbol layout.
      
      Bug: 7455289
      Change-Id: I0f819631ff05c4a31d3a6868dea5e18a1797f103
      c27e899d
    • Jean Chalard's avatar
      Fix variation dumping. · 4d0fa317
      Jean Chalard authored
      Variations are not flags - they should not be OR'd in this way.
      Only one variation may be active at a time.
      
      Change-Id: I9d3d4c8fc04af56c914c65f9c55f1e7b9517fc68
      4d0fa317
  10. Nov 19, 2012
    • Jean Chalard's avatar
      Only add spaces automatically when appropriate. · ec60d600
      Jean Chalard authored
      Correctly check the variations to determine if we should
      add automatic spaces (in manual picks and gestures) or not.
      
      Bug: 7164981
      Change-Id: I19e25af839b4062c217113cd804b1473912f22a5
      ec60d600
    • Tadashi G. Takaoka's avatar
      Add Spanish United States keyboard · 76d4ffee
      Tadashi G. Takaoka authored
      The subtype locale name on the spacebar will be suppressed when only
      one subtype is enabled and
       - Subtype locale is equal to the system locale.
      or
       - Subtype language is equal to the system language but the subtype is
         implicitly enabled.
      
      Thus the "es_ES" system locale chooses "es" subtype keyboard
      implicitly but the keyboard doesn't have the subtype name on its
      spacebar.
      
      This change also removes Spanish Latin America keyboard.
      
      Bug: 7531804
      Change-Id: Ib929e8235d643c0ba039eb010e18ab721a734e15
      76d4ffee
    • Tadashi G. Takaoka's avatar
      Add Spanish United States keyboard (DO NOT MERGE) · fd1267e3
      Tadashi G. Takaoka authored
      Bug: 7531804
      Change-Id: Idd66ee30e5228260540308a97c930185b48e775f
      fd1267e3
  11. Nov 17, 2012
  12. Nov 16, 2012
  13. Nov 15, 2012
  14. Nov 14, 2012
  15. Nov 13, 2012
    • Jean Chalard's avatar
      Make sure all FDs are correctly closed. · 5c32b6da
      Jean Chalard authored
      In this kind of series of calls, it's possible that an outer call to a
      constructor fails, but the inner succeeded.
      Example:
      try {
          is = new A(new B());
      } finally {
          if (null != is) is.close();
      }
      In this case, if new B() succeeds but new A() throws an
      exception, is stays null and the intermediate object is never
      closed. This is what was happening in this instance.
      
      Bug: 7377336
      Change-Id: I3fae9fec1135244982fcf5098c76d93f3e0f2add
      5c32b6da
Loading