You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would make it possible to immediately display the new resolution image, rather than having to wait for a user action to update the UI. Currently, in Magellan in Explore mode, zooming out regularly leads to a completely black canvas that only gets filled in when the user moves the mouse. or otherwise forces the display to update.
The text was updated successfully, but these errors were encountered:
Yes, and that makes sense. Here are all the places where it is used, which (maybe?) you would need to update. Though maybe not because they can just discard the future it returns
Is it OK to change the signature of MultiResNDTiffAPI
void increaseMaxResolutionLevel(int newMaxResolutionLevel);
to:
Future<Integer> increaseMaxResolutionLevel(int newMaxResolutionLevel);
where Integer denotes the newMaxResolutionIndex?
This would make it possible to immediately display the new resolution image, rather than having to wait for a user action to update the UI. Currently, in Magellan in Explore mode, zooming out regularly leads to a completely black canvas that only gets filled in when the user moves the mouse. or otherwise forces the display to update.
The text was updated successfully, but these errors were encountered: