[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - android/experimental

Tomaž Vajngerl tomaz.vajngerl at collabora.co.uk
Wed Mar 25 01:04:43 PDT 2015


 android/experimental/LOAndroid3/res/layout/text_selection_handles.xml |   46 +++++-----
 1 file changed, 25 insertions(+), 21 deletions(-)

New commits:
commit 8618bd3729c7969e4c97c410e6140477ea567b52
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date:   Wed Mar 25 17:00:45 2015 +0900

    android: fix wrong TextCursorView class name, format xml
    
    Change-Id: I54d68cd5ba17bae675c8da421f2e661ac20abe77

diff --git a/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml b/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml
index 122d1b8..0ee1048 100644
--- a/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml
+++ b/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml
@@ -6,29 +6,33 @@
 <merge xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:gecko="http://schemas.android.com/apk/res-auto">
 
-    <org.mozilla.gecko.TextSelectionHandle android:id="@+id/start_handle"
-                                           android:layout_width="@dimen/text_selection_handle_width"
-                                           android:layout_height="@dimen/text_selection_handle_height"
-                                           android:src="@drawable/handle_start_level"
-                                           android:visibility="gone"
-                                           gecko:handleType="start"/>
+    <org.mozilla.gecko.TextSelectionHandle
+        android:id="@+id/start_handle"
+        android:layout_width="@dimen/text_selection_handle_width"
+        android:layout_height="@dimen/text_selection_handle_height"
+        android:src="@drawable/handle_start_level"
+        android:visibility="gone"
+        gecko:handleType="start"/>
 
-    <org.mozilla.gecko.TextSelectionHandle android:id="@+id/middle_handle"
-                                           android:layout_width="@dimen/text_selection_handle_width"
-                                           android:layout_height="@dimen/text_selection_handle_height"
-                                           android:src="@drawable/handle_middle"
-                                           android:visibility="gone"
-                                           gecko:handleType="middle"/>
+    <org.mozilla.gecko.TextSelectionHandle
+        android:id="@+id/middle_handle"
+        android:layout_width="@dimen/text_selection_handle_width"
+        android:layout_height="@dimen/text_selection_handle_height"
+        android:src="@drawable/handle_middle"
+        android:visibility="gone"
+        gecko:handleType="middle"/>
 
-    <org.mozilla.gecko.TextSelectionHandle android:id="@+id/end_handle"
-                                           android:layout_width="@dimen/text_selection_handle_width"
-                                           android:layout_height="@dimen/text_selection_handle_height"
-                                           android:src="@drawable/handle_end_level"
-                                           android:visibility="gone"
-                                           gecko:handleType="end"/>
+    <org.mozilla.gecko.TextSelectionHandle
+        android:id="@+id/end_handle"
+        android:layout_width="@dimen/text_selection_handle_width"
+        android:layout_height="@dimen/text_selection_handle_height"
+        android:src="@drawable/handle_end_level"
+        android:visibility="gone"
+        gecko:handleType="end"/>
 
-    <org.libreoffice.TextCursorView android:id="@+id/text_cursor_view"
-                                    android:layout_width="fill_parent"
-                                    android:layout_height="fill_parent"/>
+    <org.libreoffice.overlay.TextCursorView
+        android:id="@+id/text_cursor_view"
+        android:layout_width="fill_parent"
+        android:layout_height="fill_parent"/>
 
 </merge>


More information about the Libreoffice-commits mailing list