From 4cbde7d1b4c0c0335abdf656ddc5ff9c97513070 Mon Sep 17 00:00:00 2001 From: Jordan Wages Date: Wed, 4 Jul 2018 00:23:00 -0500 Subject: [PATCH] Subregion bug Fixed bug that left out the -s flag when subregions were present. --- butterflow-ui/OptionsConfiguration.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/butterflow-ui/OptionsConfiguration.cs b/butterflow-ui/OptionsConfiguration.cs index 5f8dc6a..8e24f89 100644 --- a/butterflow-ui/OptionsConfiguration.cs +++ b/butterflow-ui/OptionsConfiguration.cs @@ -452,6 +452,8 @@ namespace butterflow_ui if (this.Subregions.Any()) { + stringBuilder.Append("-s "); + foreach (var anon in this.Subregions.Select((sr, index) => new { Index = index, Subregion = sr })) { string format = "ss\\.fff";