Change border corner radius.
authorPiotr Czaja <p.czaja@samsung.com>
Tue, 31 Oct 2023 12:40:44 +0000 (13:40 +0100)
committerPiotr Czaja/Tizen Services & IoT (PLT) /SRPOL/Engineer/Samsung Electronics <p.czaja@samsung.com>
Tue, 31 Oct 2023 15:30:15 +0000 (16:30 +0100)
Change-Id: I22f8e99268bbca54b00d353982c1a096220dfcca

SettingView/SettingViewBorder.cs

index ebb17935120447ba80f64d10b96409ca8e5e90dc..970e9f4776fb04637049ab6b352e3f3e4064d570 100644 (file)
@@ -228,16 +228,15 @@ namespace SettingView
             }
 
             borderView.CornerRadiusPolicy = VisualTransformPolicyType.Absolute;
+            borderView.CornerRadius = WindowCornerRadius.SpToPx();
 
             if (BorderWindow.IsMaximized())
             {
                 maximalizeIcon.ResourceUrl = RestoreIconPath;
-                borderView.CornerRadius = 0;
             }
             else
             {
                 maximalizeIcon.ResourceUrl = MaximalizeIconPath;
-                borderView.CornerRadius = WindowCornerRadius.SpToPx();
             }
         }
     }