Cursor over property while debugging completely freezes VS (CPU 0%)

.971 Java

If I set a breakpoint, the debugger stops at the line. Then I hover the mouse over the word ‘handtekening’. VS then freezes completely, cursor does not change over buttons etc. CPU is 0%. Happens every time i try this.

  CommonPrefs = public static class
...
  public
    class property LicDate : Date := nil;
    class property Demo : Boolean := True; // wordt uitgezet als gebruiker is gevalideerd.
    class property Handtekening : String := '';

...

class method CommonPrefs.Store;
var e : SharedPreferences.Editor;
begin
  e := sm.edit;
  // ---------- BREAKPOINT IN LINE BELOW THIS, CURSOR OVER the last word 'handtekening'
  e.putString(DataFiscaal.getContext.Resources.String[R.string.handtekeningKey], handtekening);
  e.putString(DataFiscaal.getContext.Resources.String[R.string.favoritesKey], TextUtils.join(",", Favorites));
  e.putInt(DataFiscaal.getContext.Resources.String[R.string.licenseDateKey], LicDate.Date);
  e.commit;

  // stored calculations opslaan
    usersetdb := DatabaseHelperUserdata.getConnection;
  
  usersetdb.rawQuery('delete from rmstore', []); 

  for itm in StoredCalcs do
  begin
    usersetdb.rawQuery('insert into rmstore(extID, SyncStatus, Description, Data, Location) values (?, ?, ?, ?, ?)', [itm.ID.tostring, itm.Syncstatus.tostring, itm.Description, itm.Data, itm.Location]);
  end;
  usersetdb.close;

end;

Thanks, logged as bugs://53384 for review
Posted by Bugs for Mac