Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion c_src/script.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
{
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}
Expand Down