From 8233890e3902a06be41db71aec30ff2a93e80351 Mon Sep 17 00:00:00 2001 From: Heilig Benedek Date: Fri, 12 Jan 2018 18:17:16 +0100 Subject: [PATCH] lint fix --- atom/browser/ui/win/atom_desktop_native_widget_aura.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/atom/browser/ui/win/atom_desktop_native_widget_aura.cc b/atom/browser/ui/win/atom_desktop_native_widget_aura.cc index 3263ae103b8a..59a597d4933c 100644 --- a/atom/browser/ui/win/atom_desktop_native_widget_aura.cc +++ b/atom/browser/ui/win/atom_desktop_native_widget_aura.cc @@ -31,8 +31,7 @@ void AtomDesktopNativeWidgetAura::OnWindowActivated( reason, gained_active, lost_active); if (lost_active != nullptr) { auto* tooltip_controller = static_cast( - aura::client::GetTooltipClient(lost_active->GetRootWindow()) - ); + aura::client::GetTooltipClient(lost_active->GetRootWindow())); // This will cause the tooltip to be hidden when a window is deactivated, // as it should be. Remove this fix when the chromium issue is fixed.