From 5ce46c6e84be9d1c6de3d7b08c9bc509f4946028 Mon Sep 17 00:00:00 2001 From: Robert Gummesson Date: Wed, 29 Nov 2017 14:31:59 +0000 Subject: [PATCH 1/2] Reduced project selection cell size --- BuildTimeAnalyzer/Main.storyboard | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/BuildTimeAnalyzer/Main.storyboard b/BuildTimeAnalyzer/Main.storyboard index 7e8d026..4e1c5a7 100755 --- a/BuildTimeAnalyzer/Main.storyboard +++ b/BuildTimeAnalyzer/Main.storyboard @@ -321,7 +321,7 @@ Gw - + @@ -359,7 +359,7 @@ Gw - + @@ -397,7 +397,7 @@ Gw - + @@ -434,7 +434,7 @@ Gw - + @@ -527,7 +527,7 @@ Gw - + @@ -535,7 +535,7 @@ Gw - + @@ -550,20 +550,20 @@ Gw - + - + - + @@ -596,7 +596,7 @@ Gw - + From 5a34676e11e3bda064c8cea20e936c987079488f Mon Sep 17 00:00:00 2001 From: Robert Gummesson Date: Wed, 29 Nov 2017 14:33:41 +0000 Subject: [PATCH 2/2] default to window not on top --- BuildTimeAnalyzer/UserSettings.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildTimeAnalyzer/UserSettings.swift b/BuildTimeAnalyzer/UserSettings.swift index 5f0a4f4..0124fb6 100644 --- a/BuildTimeAnalyzer/UserSettings.swift +++ b/BuildTimeAnalyzer/UserSettings.swift @@ -35,7 +35,7 @@ class UserSettings { if _windowLevelIsNormal == nil { _windowLevelIsNormal = UserDefaults.standard.bool(forKey: windowLevelIsNormalKey) } - return !(_windowLevelIsNormal ?? true) + return !(_windowLevelIsNormal ?? false) } set { _windowLevelIsNormal = !newValue