From 985a0b9bce525a59907d26d5cd4aef3f6e4ce770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Sto=C5=A1i=C4=87?= Date: Thu, 5 Mar 2020 16:00:18 +0100 Subject: [PATCH] Fixed resizer thumbs not being shown (#1309) --- .../fancyzones/editor/FancyZonesEditor/GridEditor.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/fancyzones/editor/FancyZonesEditor/GridEditor.xaml.cs b/src/modules/fancyzones/editor/FancyZonesEditor/GridEditor.xaml.cs index 012c37466e..2183a3a91d 100644 --- a/src/modules/fancyzones/editor/FancyZonesEditor/GridEditor.xaml.cs +++ b/src/modules/fancyzones/editor/FancyZonesEditor/GridEditor.xaml.cs @@ -690,6 +690,7 @@ namespace FancyZonesEditor { Canvas.SetLeft(resizer, _colInfo[col].End + (spacing / 2) - 24); // hard coding this as (resizer.ActualWidth / 2) will still evaluate to 0 here ... a layout hasn't yet happened Canvas.SetTop(resizer, (_rowInfo[endRow].End + _rowInfo[startRow].Start) / 2); + resizer.Visibility = Visibility.Visible; } else {