Skip to content

Commit da0f69e

Browse files
committed
3.3.2
1 parent 7d6b990 commit da0f69e

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

.idea/misc.xml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</h1>
88

99
<div align="center">
10-
<a><img src="https://img.shields.io/badge/Version-3.3.1-brightgreen.svg?style=flat"></a>
10+
<a><img src="https://img.shields.io/badge/Version-3.3.2-brightgreen.svg?style=flat"></a>
1111
<a><img src="https://img.shields.io/badge/ID-gzeinnumer-blue.svg?style=flat"></a>
1212
<a><img src="https://img.shields.io/badge/Java-Suport-green?logo=java&style=flat"></a>
1313
<a><img src="https://img.shields.io/badge/Kotlin-Suport-green?logo=kotlin&style=flat"></a>
@@ -547,6 +547,8 @@ new TimeDialog(getSupportFragmentManager())
547547
- Remove Space From Button
548548
- **3.3.1**
549549
- Add CharSequence to Title and Content
550+
- **3.3.2**
551+
- Improve Space Between TextButton
550552

551553
---
552554
# Contribution

da/src/main/res/layout/confirm_dialog.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,19 @@
4040
android:gravity="end">
4141

4242
<Button
43+
android:minWidth="0dp"
4344
android:id="@+id/d_btn_cancel_MBT"
4445
style="@style/MyButtonText"
4546
android:layout_width="wrap_content"
4647
android:layout_height="wrap_content"
47-
android:layout_marginEnd="@dimen/def_margin"
48+
android:layout_marginEnd="@dimen/space"
4849
android:text="@string/cancel"
4950
android:textColor="@color/colorPrimary"
5051
android:visibility="gone"
5152
tools:visibility="visible" />
5253

5354
<Button
55+
android:minWidth="0dp"
5456
android:id="@+id/d_btn_ok_MBT"
5557
style="@style/MyButtonText"
5658
android:layout_width="wrap_content"

da/src/main/res/layout/number_picker_dialog.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@
8484
style="@style/MyButtonText"
8585
android:layout_width="wrap_content"
8686
android:layout_height="wrap_content"
87-
android:layout_marginEnd="@dimen/def_margin"
87+
android:layout_marginEnd="@dimen/space"
88+
android:minWidth="0dp"
8889
android:text="@string/cancel"
8990
android:visibility="gone"
9091
tools:visibility="visible" />
@@ -94,6 +95,7 @@
9495
style="@style/MyButtonText"
9596
android:layout_width="wrap_content"
9697
android:layout_height="wrap_content"
98+
android:minWidth="0dp"
9799
android:text="@string/ok"
98100
android:visibility="gone"
99101
tools:visibility="visible" />

0 commit comments

Comments
 (0)