Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Medrano <josmed@microsoft.com>2022-04-07 15:06:30 +0300
committerJose Medrano <josmed@microsoft.com>2022-04-07 15:06:30 +0300
commit6128d3e3f348b8858413eaf0fb80c693d200353b (patch)
tree648af9637ff0dcf747272815cd11e575a8142882
parent2659fbb990c9ac34153b965a4f1a24a9656f4cec (diff)
fixes indentation
-rw-r--r--Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs b/Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs
index bfae9ac8..3344bb95 100644
--- a/Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs
+++ b/Xwt.XamMac/Xwt.Mac/WindowFrameBackend.cs
@@ -104,7 +104,7 @@ namespace Xwt.Mac
}
void TryAddChildWindowIfVisible(NSWindow parentWindow, NSWindow window)
- {
+ {
if (parentWindow != null && Visible)
{
if (!parentWindow.ChildWindows.Contains(window))
@@ -340,7 +340,7 @@ namespace Xwt.Mac
//we try to get the native object from the parameter if not we fallback into the real parent
if (ApplicationContext.Toolkit.GetNativeWindow(parent) is NSWindow nParent && nParent != Window.ParentWindow)
- {
+ {
// remove from the previous parent
if (Window.ParentWindow != null)
Window.ParentWindow.RemoveChildWindow(Window);