summaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2024-02-20 17:33:46 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2024-02-21 18:03:30 +0100
commitdfdb7a0430e0f31ca39ca4dc0b90d5853253f5e6 (patch)
tree3d38a57a107de41db35d4ea33a4d4ae5cece3565 /tests/manual
parentb5a0db53b5eac7c0be8bc99ba79097608bf3e71f (diff)
Iconbrowser test: use the variable font on Android
It's the font with the highest priority in the engine, and allows us to test variants by setting a variable axis. Change-Id: I44bd3a63eef8d6cb999eaa372c29abbf445f401b Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/iconbrowser/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/iconbrowser/CMakeLists.txt b/tests/manual/iconbrowser/CMakeLists.txt
index f6793beaf4..b0fefba5db 100644
--- a/tests/manual/iconbrowser/CMakeLists.txt
+++ b/tests/manual/iconbrowser/CMakeLists.txt
@@ -29,14 +29,14 @@ target_link_libraries(iconbrowser PRIVATE
endif()
if (ANDROID)
- set(font_filename "MaterialIcons-Regular.ttf")
+ set(font_filename "MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].ttf")
if (QT_ALLOW_DOWNLOAD)
include(FetchContent)
FetchContent_Declare(
MaterialIcons
URL
- "https://github.com/google/material-design-icons/raw/master/font/${font_filename}"
+ "https://github.com/google/material-design-icons/raw/master/variablefont/${font_filename}"
DOWNLOAD_DIR ${CMAKE_CURRENT_BINARY_DIR}
DOWNLOAD_NAME "${font_filename}"
DOWNLOAD_NO_EXTRACT TRUE