-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
I want to have 0 new lines between nodes. Currently, it's always set to 1:
Actual formatting:
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:layout_width="match_parent"
tools:layout_height="match_parent"
tools:background="#000000"
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
<com.vanniktech.feature.gps.VanniktechMapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" />Wanted formatting:
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:layout_width="match_parent"
tools:layout_height="match_parent"
tools:background="#000000"
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
<com.vanniktech.feature.gps.VanniktechMapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" />Would it be possible to set the number of lines between nodes? 1 for the current behavior (and can be the default) and 0 for the behavior, I want?
Metadata
Metadata
Assignees
Labels
No labels