1 Commits

Author SHA1 Message Date
1d4483f6da notes: add icons to use previous/next event as template 2025-11-07 21:34:42 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -343,7 +343,6 @@ class MainActivity : AppCompatActivity() {
if (useQuantity) {
qtyET.setText("")
}
updateContent(lunaEvent)
}
if (!useQuantity) {

View File

@@ -27,26 +27,27 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="end"
android:orientation="horizontal">
<TextView
android:id="@+id/notes_template_prev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:textSize="18dp"
android:text="⬅️"/>
<TextView
android:id="@+id/notes_clear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:textSize="16dp"
android:textSize="18dp"
android:text="🚫"/>
<TextView
android:id="@+id/notes_template_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:textSize="18dp"
android:text="➡️"/>
</LinearLayout>