Skip to content

Commit d04da42

Browse files
committed
Update
1 parent a926769 commit d04da42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/src/main/java/com/omarea/krscript/ui/DialogLogFragment.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@ class DialogLogFragment : DialogFragment() {
125125
if (nodeInfo.title.isNotEmpty()) {
126126
binding.title.text = nodeInfo.title
127127
} else {
128-
binding.title.visibility = View.INVISIBLE
128+
binding.title.visibility = View.GONE
129129
}
130130

131131
if (nodeInfo.desc.isNotEmpty()) {
132132
binding.desc.text = nodeInfo.desc
133133
} else {
134-
binding.desc.visibility = View.INVISIBLE
134+
binding.desc.visibility = View.GONE
135135
}
136136

137137
binding.actionProgress.isIndeterminate = true

app/src/main/res/layout/kr_dialog_log.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</LinearLayout>
4141
<ProgressBar
4242
android:id="@+id/action_progress"
43-
android:layout_marginTop="4dp"
43+
android:layout_marginTop="2dp"
4444
style="?android:attr/progressBarStyleHorizontal"
4545
android:layout_width="match_parent"
4646
android:layout_height="8dp"

0 commit comments

Comments
 (0)