From 140a429e09c5ccad7c51d48e53d664da67e33e62 Mon Sep 17 00:00:00 2001 From: Niklas Korsbo Date: Wed, 11 Dec 2019 12:27:44 +0000 Subject: [PATCH] Fix regression of layout_args. --- src/layouts.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/layouts.jl b/src/layouts.jl index f7cbc0ef..1bc5367b 100644 --- a/src/layouts.jl +++ b/src/layouts.jl @@ -514,6 +514,8 @@ function layout_args(layout::GridLayout) layout, n end +layout_args(n_override::Integer, layout::GridLayout) = layout_args(layout) + layout_args(huh) = error("unhandled layout type $(typeof(huh)): $huh")