From 84b7d2a7873e33b7e6d696cd81ca1e5695338bd7 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Tue, 2 Feb 2016 19:44:06 +0100 Subject: [PATCH] Set the default `GridWarpSurface` col and row count to 2 --- src/Surfaces/GridWarpSurface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Surfaces/GridWarpSurface.cpp b/src/Surfaces/GridWarpSurface.cpp index d06127c..636ebaa 100644 --- a/src/Surfaces/GridWarpSurface.cpp +++ b/src/Surfaces/GridWarpSurface.cpp @@ -5,7 +5,7 @@ namespace piMapper { GridWarpSurface::GridWarpSurface(){ _gridCols = 2; - _gridRows = 3; + _gridRows = 2; createGridMesh(); }