Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7b63f6f1 authored by Matt Casey's avatar Matt Casey
Browse files

Hide CropView until the image is ready.

Test: Verify crop view shows up at the right time with a fresh long
      screenshot or reloading saved state
Bug: 185115974
Change-Id: I18705e6a8c4a762abf30e2db22bc54d9a5db12aa
parent 3f2a7540
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -71,6 +71,7 @@
        android:layout_height="0px"
        android:paddingTop="8dp"
        android:paddingBottom="42dp"
        android:visibility="gone"
        app:layout_constrainedHeight="true"
        app:layout_constrainedWidth="true"
        app:layout_constraintTop_toTopOf="@id/preview"
+2 −0
Original line number Diff line number Diff line
@@ -207,6 +207,7 @@ public class LongScreenshotActivity extends Activity {
        mLongScreenshot = longScreenshot;
        mPreview.setImageDrawable(mLongScreenshot.getDrawable());
        updateImageDimensions();
        mCropView.setVisibility(View.VISIBLE);
        mMagnifierView.setDrawable(mLongScreenshot.getDrawable(),
                mLongScreenshot.getWidth(), mLongScreenshot.getHeight());
        // Original boundaries go from the image tile set's y=0 to y=pageSize, so
@@ -240,6 +241,7 @@ public class LongScreenshotActivity extends Activity {
        mPreview.setImageDrawable(drawable);
        mMagnifierView.setDrawable(drawable, imageResult.bitmap.getWidth(),
                imageResult.bitmap.getHeight());
        mCropView.setVisibility(View.VISIBLE);
        mSavedImagePath = imageResult.fileName;

        setButtonsEnabled(true);