Add some spacing around a comment

This commit is contained in:
Nate Weaver 2019-09-17 13:58:45 -05:00
parent 1e840f3090
commit 93f7972441
1 changed files with 4 additions and 1 deletions

View File

@ -532,8 +532,11 @@ extension AppDelegate {
@IBAction func toggleWebInspectorEnabled(_ sender: Any?) {
let newValue = !AppDefaults.webInspectorEnabled
AppDefaults.webInspectorEnabled = newValue
// An attached inspector can display incorrectly on certain setups (like mine); default to displaying in a separate window,
// and reset to a separate window when the preference is toggled off and on again in case the inspector is accidentally reattached.
// and reset the default to a separate window when the preference is toggled off and on again in case the inspector is
// accidentally reattached.
AppDefaults.webInspectorStartsAttached = false
NotificationCenter.default.post(name: .WebInspectorEnabledDidChange, object: newValue)
}