diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-02-02 10:20:05 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-23 22:45:29 +0100 |
commit | f1bb2c847896689a5e70b6f423b1cfdc923824de (patch) | |
tree | 332a95a8d04419ad7298ce8ef95f5549fabbefd6 /mobile-widgets/qml | |
parent | ca211c03e00998e4f051c760c0f335978685704c (diff) | |
download | subsurface-f1bb2c847896689a5e70b6f423b1cfdc923824de.tar.gz |
Mobile/filtering: add icons for filter and sort
Add 2 icons for filter and sort capabilities. And as before, these
icons are coming from the Google Material design set.
[Dirk Hohndel: Jan's commit forgot to add the actual icons, I added
those so the commit matched its message]
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/icons/ic_filter_list_24px.svg | 1 | ||||
-rw-r--r-- | mobile-widgets/qml/icons/ic_sort_24px.svg | 1 | ||||
-rw-r--r-- | mobile-widgets/qml/mobile-resources.qrc | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/mobile-widgets/qml/icons/ic_filter_list_24px.svg b/mobile-widgets/qml/icons/ic_filter_list_24px.svg new file mode 100644 index 000000000..972d40124 --- /dev/null +++ b/mobile-widgets/qml/icons/ic_filter_list_24px.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z"/></svg>
\ No newline at end of file diff --git a/mobile-widgets/qml/icons/ic_sort_24px.svg b/mobile-widgets/qml/icons/ic_sort_24px.svg new file mode 100644 index 000000000..84efa535f --- /dev/null +++ b/mobile-widgets/qml/icons/ic_sort_24px.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z"/></svg>
\ No newline at end of file diff --git a/mobile-widgets/qml/mobile-resources.qrc b/mobile-widgets/qml/mobile-resources.qrc index 14cd6677c..a40f74b8d 100644 --- a/mobile-widgets/qml/mobile-resources.qrc +++ b/mobile-widgets/qml/mobile-resources.qrc @@ -58,6 +58,8 @@ <file>icons/ic_star_border.svg</file> <file>icons/ic_sync.svg</file> <file>icons/Pink_gps.svg</file> + <file alias="icons/ic_filter_list.svg">icons/ic_filter_list_24px.svg</file> + <file alias="icons/ic_sort.svg">icons/ic_sort_24px.svg</file> <!-- ********** kirigami icons ********** --> <file alias="icons/application-menu.svg">kirigami/icons/application-menu.svg</file> |