diff options
author | Atef hares <atefhares1@gmail.com> | 2017-03-12 06:13:24 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-03-16 19:57:40 +0000 |
commit | 135a9e6ac94f7bf83d1a57a4fb4eab1f66c6d71d (patch) | |
tree | 522f71e2ed13902b606094aeef2eef50fbac0f94 /android/source/res/drawable | |
parent | 5bb0cc118396c27a880ecab76c3ab383d6c8c0ff (diff) |
tdf#106369, New feature, Inserting numbering/bullets format lists
Editing toolbar_bottom to include two more options:
1- Inserting numbering format lists
2- Inserting bullets format lists
Change-Id: I35f9238c45ab253ea75c693f7a76601408e36f9a
Reviewed-on: https://gerrit.libreoffice.org/35106
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'android/source/res/drawable')
-rw-r--r-- | android/source/res/drawable/ic_format_bullets.xml | 4 | ||||
-rw-r--r-- | android/source/res/drawable/ic_format_numbering.xml | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/android/source/res/drawable/ic_format_bullets.xml b/android/source/res/drawable/ic_format_bullets.xml new file mode 100644 index 000000000000..d818dde10d18 --- /dev/null +++ b/android/source/res/drawable/ic_format_bullets.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<bitmap xmlns:android="http://schemas.android.com/apk/res/android" + android:src="@drawable/ic_format_list_bulleted_black_24dp" + android:tint="@color/toolbar_forgeround"/>
\ No newline at end of file diff --git a/android/source/res/drawable/ic_format_numbering.xml b/android/source/res/drawable/ic_format_numbering.xml new file mode 100644 index 000000000000..a5aec9735b91 --- /dev/null +++ b/android/source/res/drawable/ic_format_numbering.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<bitmap xmlns:android="http://schemas.android.com/apk/res/android" + android:src="@drawable/ic_format_list_numbered_black_24dp" + android:tint="@color/toolbar_forgeround"/>
\ No newline at end of file |