diff --git a/c_src/script.c b/c_src/script.c index 758c13b..6172249 100644 --- a/c_src/script.c +++ b/c_src/script.c @@ -213,7 +213,7 @@ void render_text( char* p_text, unsigned int size, NVGcontext* p_ctx ) int nrows, i; // up to this code to break the lines... - while ((nrows = nvgTextBreakLines(p_ctx, start, end, 1000, rows, 3))) + while ((nrows = nvgTextBreakLines(p_ctx, start, end, 9999, rows, 3))) { for (i = 0; i < nrows; i++) { diff --git a/mix.exs b/mix.exs index 53dfb35..2880724 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Scenic.Driver.Local.MixProject do use Mix.Project @app_name :scenic_driver_local - @version "0.11.0-beta.0" + @version "0.11.1" @github "https://github.com/ScenicFramework/scenic_driver_local" def project do @@ -49,7 +49,7 @@ defmodule Scenic.Driver.Local.MixProject do defp deps do [ {:input_event, "~> 0.4"}, - {:scenic, "~> 0.11.0-beta.0"}, + {:scenic, git: "https://github.com/ScenicFramework/scenic.git", tag: "v0.11.1"}, {:elixir_make, "~> 0.6", runtime: false}, {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}, {:dialyxir, "~> 1.1", only: :dev, runtime: false}