Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ private void handleUpload() {
{ //Run slow bitmap operation on separate thread
//Only convert the image if needed
String action = getIntent().getAction();
if (action.equals(DIMENSIONING_RESULT_INTENT_ACTION_GET_DIMENSION))
// if (action.equals(DIMENSIONING_RESULT_INTENT_ACTION_GET_DIMENSION))
//startActivityForResult will receive JSON string of DimensioningResult without image (too big)
setResult(RESULT_OK, new Intent().putExtra(DIMENSIONING_RESULT_INTENT_EXTRA_DIMENSIONING_RESULT, mGson.toJson(mDimensioningResult)));
if (convertBitmap)
Expand Down Expand Up @@ -729,4 +729,4 @@ private void showUI() {
mProgressBar.setVisibility(GONE);
});
}
}
}
Loading