commit a13e11014ce6f2f2e5156fc025b19776222f2bb1
Author: Leszek Koltunski <leszek@distoretedandroid.org>
Date:   Mon Nov 14 15:03:52 2016 +0000

    Minor

diff --git a/src/main/java/org/distorted/examples/effectqueue/EffectQueueActivity.java b/src/main/java/org/distorted/examples/effectqueue/EffectQueueActivity.java
index 6e98e23..f6bd67f 100644
--- a/src/main/java/org/distorted/examples/effectqueue/EffectQueueActivity.java
+++ b/src/main/java/org/distorted/examples/effectqueue/EffectQueueActivity.java
@@ -58,7 +58,7 @@ public class EffectQueueActivity extends Activity implements AdapterView.OnItemS
     {
     super.onCreate(savedInstanceState);
  
-    setContentView(R.layout.effects2dlayout);
+    setContentView(R.layout.effectqueuelayout);
 
     mPosID   = 0;
     mPosName = 0;
diff --git a/src/main/res/layout/effectqueuelayout.xml b/src/main/res/layout/effectqueuelayout.xml
new file mode 100644
index 0000000..b270160
--- /dev/null
+++ b/src/main/res/layout/effectqueuelayout.xml
@@ -0,0 +1,161 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent"
+    android:orientation="vertical" >
+
+    <org.distorted.examples.effectqueue.EffectQueueSurfaceView
+        android:id="@+id/effects2dSurfaceView"
+        android:layout_width="fill_parent"
+        android:layout_height="0dp"
+        android:layout_weight="1" />
+
+    <ScrollView
+        android:id="@+id/effects2dscrollView"
+        android:layout_width="match_parent"
+        android:layout_height="0dp"
+        android:layout_weight="0.82" >
+
+    <LinearLayout
+        android:id="@+id/linearLayout1"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        android:layout_weight="0.3"
+        android:gravity="fill_horizontal|top"
+        android:orientation="vertical"
+        android:weightSum="1">
+
+        <TableLayout
+            android:layout_width="fill_parent"
+            android:layout_height="wrap_content"
+            android:paddingTop="2dp"
+            android:paddingBottom="2dp"
+            android:stretchColumns="0,1,2"
+            android:paddingLeft="10dp"
+            android:paddingRight="10dp">
+
+            <TableRow
+                android:layout_width="match_parent"
+                android:layout_height="match_parent">
+
+                <TextView
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/add"
+                    android:id="@+id/textView"
+                    android:layout_gravity="center_vertical"
+                    android:layout_span="2"
+                    android:layout_marginLeft="8dp"/>
+
+                <Spinner
+                    android:layout_width="fill_parent"
+                    android:layout_height="40dp"
+                    android:id="@+id/effects2d_spinnerAdd"
+                    />
+            </TableRow>
+
+            <TableRow
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="center"
+                android:orientation="vertical">
+
+                <Button
+                    android:layout_width="wrap_content"
+                    android:layout_height="40dp"
+                    android:text="@string/removebut"
+                    android:id="@+id/effects2dRemoveID"
+                    android:onClick="removeByID"/>
+
+                <TextView
+                    android:layout_width="match_parent"
+                    android:layout_height="wrap_content"
+                    android:text="@string/id"
+                    android:id="@+id/textView3"
+                    android:layout_gravity="center"/>
+
+                <Spinner
+                    android:layout_width="fill_parent"
+                    android:layout_height="40dp"
+                    android:id="@+id/effects2d_spinnerID"/>
+            </TableRow>
+
+            <TableRow
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="center">
+
+                <Button
+                    android:layout_width="wrap_content"
+                    android:layout_height="40dp"
+                    android:text="@string/removebut"
+                    android:id="@+id/effects2dRemoveName"
+                    android:onClick="removeByName"/>
+
+                <TextView
+                    android:layout_width="match_parent"
+                    android:layout_height="wrap_content"
+                    android:text="@string/name"
+                    android:id="@+id/textView4"
+                    android:layout_gravity="center"/>
+
+                <Spinner
+                    android:layout_width="fill_parent"
+                    android:layout_height="40dp"
+                    android:id="@+id/effects2d_spinnerName"/>
+            </TableRow>
+
+            <TableRow
+                android:layout_width="wrap_content"
+                android:layout_height="wrap_content"
+                android:layout_gravity="center">
+
+                <Button
+                    android:layout_width="wrap_content"
+                    android:layout_height="40dp"
+                    android:text="@string/removebut"
+                    android:id="@+id/effects2dRemoveType"
+                    android:onClick="removeByType"/>
+
+                <TextView
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/type"
+                    android:id="@+id/textView5"
+                    android:layout_gravity="center"/>
+
+                <Spinner
+                    android:layout_width="fill_parent"
+                    android:layout_height="40dp"
+                    android:id="@+id/effects2d_spinnerType"/>
+            </TableRow>
+
+        </TableLayout>
+        <View
+            android:layout_height="2dip"
+            android:background="#333333"
+            android:layout_width="match_parent"
+            />
+
+        <TextView
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:text="@string/list"
+            android:id="@+id/textView6"
+            android:layout_gravity="center_horizontal"/>
+
+        <TableLayout
+            android:id="@+id/effects2dTableList"
+            android:layout_width="match_parent"
+            android:layout_height="match_parent"
+            android:paddingTop="2dp"
+            android:paddingBottom="2dp"
+            android:stretchColumns="0,1,2,3"
+            android:paddingLeft="10dp"
+            android:paddingRight="10dp">
+        </TableLayout>
+
+    </LinearLayout>
+
+    </ScrollView>
+</LinearLayout>
diff --git a/src/main/res/layout/effects2dlayout.xml b/src/main/res/layout/effects2dlayout.xml
deleted file mode 100644
index b270160..0000000
--- a/src/main/res/layout/effects2dlayout.xml
+++ /dev/null
@@ -1,161 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="fill_parent"
-    android:layout_height="fill_parent"
-    android:orientation="vertical" >
-
-    <org.distorted.examples.effectqueue.EffectQueueSurfaceView
-        android:id="@+id/effects2dSurfaceView"
-        android:layout_width="fill_parent"
-        android:layout_height="0dp"
-        android:layout_weight="1" />
-
-    <ScrollView
-        android:id="@+id/effects2dscrollView"
-        android:layout_width="match_parent"
-        android:layout_height="0dp"
-        android:layout_weight="0.82" >
-
-    <LinearLayout
-        android:id="@+id/linearLayout1"
-        android:layout_width="fill_parent"
-        android:layout_height="wrap_content"
-        android:layout_weight="0.3"
-        android:gravity="fill_horizontal|top"
-        android:orientation="vertical"
-        android:weightSum="1">
-
-        <TableLayout
-            android:layout_width="fill_parent"
-            android:layout_height="wrap_content"
-            android:paddingTop="2dp"
-            android:paddingBottom="2dp"
-            android:stretchColumns="0,1,2"
-            android:paddingLeft="10dp"
-            android:paddingRight="10dp">
-
-            <TableRow
-                android:layout_width="match_parent"
-                android:layout_height="match_parent">
-
-                <TextView
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:text="@string/add"
-                    android:id="@+id/textView"
-                    android:layout_gravity="center_vertical"
-                    android:layout_span="2"
-                    android:layout_marginLeft="8dp"/>
-
-                <Spinner
-                    android:layout_width="fill_parent"
-                    android:layout_height="40dp"
-                    android:id="@+id/effects2d_spinnerAdd"
-                    />
-            </TableRow>
-
-            <TableRow
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_gravity="center"
-                android:orientation="vertical">
-
-                <Button
-                    android:layout_width="wrap_content"
-                    android:layout_height="40dp"
-                    android:text="@string/removebut"
-                    android:id="@+id/effects2dRemoveID"
-                    android:onClick="removeByID"/>
-
-                <TextView
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:text="@string/id"
-                    android:id="@+id/textView3"
-                    android:layout_gravity="center"/>
-
-                <Spinner
-                    android:layout_width="fill_parent"
-                    android:layout_height="40dp"
-                    android:id="@+id/effects2d_spinnerID"/>
-            </TableRow>
-
-            <TableRow
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_gravity="center">
-
-                <Button
-                    android:layout_width="wrap_content"
-                    android:layout_height="40dp"
-                    android:text="@string/removebut"
-                    android:id="@+id/effects2dRemoveName"
-                    android:onClick="removeByName"/>
-
-                <TextView
-                    android:layout_width="match_parent"
-                    android:layout_height="wrap_content"
-                    android:text="@string/name"
-                    android:id="@+id/textView4"
-                    android:layout_gravity="center"/>
-
-                <Spinner
-                    android:layout_width="fill_parent"
-                    android:layout_height="40dp"
-                    android:id="@+id/effects2d_spinnerName"/>
-            </TableRow>
-
-            <TableRow
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
-                android:layout_gravity="center">
-
-                <Button
-                    android:layout_width="wrap_content"
-                    android:layout_height="40dp"
-                    android:text="@string/removebut"
-                    android:id="@+id/effects2dRemoveType"
-                    android:onClick="removeByType"/>
-
-                <TextView
-                    android:layout_width="wrap_content"
-                    android:layout_height="wrap_content"
-                    android:text="@string/type"
-                    android:id="@+id/textView5"
-                    android:layout_gravity="center"/>
-
-                <Spinner
-                    android:layout_width="fill_parent"
-                    android:layout_height="40dp"
-                    android:id="@+id/effects2d_spinnerType"/>
-            </TableRow>
-
-        </TableLayout>
-        <View
-            android:layout_height="2dip"
-            android:background="#333333"
-            android:layout_width="match_parent"
-            />
-
-        <TextView
-            android:layout_width="wrap_content"
-            android:layout_height="wrap_content"
-            android:text="@string/list"
-            android:id="@+id/textView6"
-            android:layout_gravity="center_horizontal"/>
-
-        <TableLayout
-            android:id="@+id/effects2dTableList"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-            android:paddingTop="2dp"
-            android:paddingBottom="2dp"
-            android:stretchColumns="0,1,2,3"
-            android:paddingLeft="10dp"
-            android:paddingRight="10dp">
-        </TableLayout>
-
-    </LinearLayout>
-
-    </ScrollView>
-</LinearLayout>
