Clicking away after changing subspecies in Sighting Info panels should save

Issue #251 new
Adam Winer created an issue

Quite annoying that it doesn't. The relevant code (in SightingBrowsePanel):

    // Auto-save when the user navigates away.  But *don't* do that when the "sp" resolver has
    // been triggered, as it results in lots of UI nastiness (you can't really revert in a simple
    // way in the resolution UI, it screws up multi-selection, etc.)
    if (spResolver != null && spResolver.getDirty().isDirty()) {
      return;
    }

... partly explains why. I could hack this up exclusively for a few cases where there isn't an issue (taxon depth == species), but getting it working in general would be nasty.

Comments (0)

  1. Log in to comment