Skip to content

Commit

Permalink
TEMPRORARY enable distance field by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ogoffart committed Oct 17, 2024
1 parent d99909f commit a9c2058
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ i-slint-backend-selector = { version = "=1.9.0", path = "internal/backends/selec
i-slint-backend-testing = { version = "=1.9.0", path = "internal/backends/testing", default-features = false }
i-slint-backend-winit = { version = "=1.9.0", path = "internal/backends/winit", default-features = false }
i-slint-common = { version = "=1.9.0", path = "internal/common", default-features = false }
i-slint-compiler = { version = "=1.9.0", path = "internal/compiler", default-features = false }
i-slint-compiler = { version = "=1.9.0", path = "internal/compiler" }
i-slint-core = { version = "=1.9.0", path = "internal/core", default-features = false }
i-slint-core-macros = { version = "=1.9.0", path = "internal/core-macros", default-features = false }
i-slint-renderer-femtovg = { version = "=1.9.0", path = "internal/renderers/femtovg", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions api/cpp/esp-idf/slint/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ set(Rust_CARGO_TARGET ${rust_target})

if (SLINT_ESP_LOCAL_EXAMPLE)
add_subdirectory(../.. slint_build)
else()
else ()
list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
find_package(Slint)

Expand All @@ -45,7 +45,7 @@ else()
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/slint-ui/slint
GIT_TAG v1.9.0
GIT_TAG feature/sdf
SOURCE_SUBDIR api/cpp
)
FetchContent_MakeAvailable(Slint)
Expand Down
1 change: 0 additions & 1 deletion api/cpp/esp-idf/slint/LICENSE

This file was deleted.

1 change: 0 additions & 1 deletion api/cpp/esp-idf/slint/LICENSES/GPL-3.0-only.txt

This file was deleted.

This file was deleted.

This file was deleted.

3 changes: 2 additions & 1 deletion internal/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ software-renderer = ["image", "dep:resvg", "fontdue", "i-slint-common/shared-fon

embed-glyphs-as-sdf = ["dep:fdsm", "dep:ttf-parser-fdsm", "dep:nalgebra", "dep:image-fdsm"]

default = []
default = ["embed-glyphs-as-sdf"]
#default = []

[dependencies]
i-slint-common = { workspace = true, features = ["default"] }
Expand Down

0 comments on commit a9c2058

Please sign in to comment.