Skip to content

Commit

Permalink
Fixed missing scrollbar in compact editor
Browse files Browse the repository at this point in the history
  • Loading branch information
appml committed Sep 10, 2023
1 parent fddc800 commit 0e26443
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
minSdkVersion 26
targetSdkVersion 34
multiDexEnabled true
versionCode 1303
versionName "4.4.5b"
versionCode 1304
versionName "4.4.5c"
}

buildTypes {
Expand Down
10 changes: 5 additions & 5 deletions app/src/main/res/layout/activity_display_dbentry_compact.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@
android:layout_weight="90"
android:padding="0dp"
android:fillViewport="true"
android:scrollbars="vertical"
android:scrollbarSize="5dp"
android:background="@color/scroll_view_background"
android:scrollbarThumbVertical="@drawable/custom_scrollbar"
>

<ScrollView
Expand All @@ -107,11 +111,7 @@
android:layout_weight="90"
android:layout_below="@id/title_bar"
android:padding="0dp"
android:fillViewport="true"
android:scrollbars="vertical"
android:scrollbarSize="5dp"
android:background="@color/scroll_view_background"
android:scrollbarThumbVertical="@drawable/custom_scrollbar">
android:fillViewport="true">

<EditText
android:id="@+id/edit_content"
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/1304.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
v4.4.5c
- Added JavaScript in-note REPL (see documentation).
- HTML/XML tag expansion support (see documentation).
- Various UI fixes.

0 comments on commit 0e26443

Please sign in to comment.