diff options
-rw-r--r-- | Bustle/Renderer.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bustle/Renderer.hs b/Bustle/Renderer.hs index 2f4c685..36dd580 100644 --- a/Bustle/Renderer.hs +++ b/Bustle/Renderer.hs @@ -260,10 +260,10 @@ data RendererState = initialBusState :: Set UniqueName -> Double -> BusState -initialBusState ignore first = +initialBusState ignore x = BusState { apps = Map.empty - , firstColumn = first - , nextColumn = first + , firstColumn = x + , nextColumn = x , columnsInUse = Set.empty , pending = Map.empty , bsIgnoredNames = ignore |