Skip to content

Commit

Permalink
fine tune ui
Browse files Browse the repository at this point in the history
  • Loading branch information
plateaukao committed Oct 10, 2024
1 parent 210d386 commit d52c324
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions LimeStudio/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ android {

minSdkVersion 21
targetSdkVersion 33
versionCode 700
versionName '7.0.0'
versionCode 701
versionName '7.0.1'
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void requestLayout() {

if (mPasteButton != null) {
Boolean shouldShowPasteButton = (showExpandButton || mCandidateView.isClipboardEmpty()) ? false : true;
mPasteButton.setVisibility(shouldShowPasteButton ? VISIBLE : GONE);
mPasteButton.setVisibility(shouldShowPasteButton ? VISIBLE : INVISIBLE);
}

if (mButtonRightExpand != null) {
Expand Down
2 changes: 1 addition & 1 deletion LimeStudio/app/src/main/res/layout/candidates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
android:src="@drawable/paste"
android:layout_width="@dimen/candidate_expand_button_width"
android:layout_height="fill_parent"
android:visibility="gone"
android:visibility="invisible"
android:clickable="true"
/>
<ImageButton
Expand Down
2 changes: 1 addition & 1 deletion LimeStudio/app/src/main/res/layout/inputcandidate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
android:src="@drawable/paste"
android:layout_width="@dimen/candidate_expand_button_width"
android:layout_height="fill_parent"
android:visibility="gone"
android:visibility="invisible"
android:clickable="true"
/>

Expand Down

0 comments on commit d52c324

Please sign in to comment.