[MacViews] Show() with SHOW_STATE_NORMAL improperly implies activation |
|||||
Issue descriptionNativeWidgetAura::ShowWithWindowState() with SHOW_STATE_NORMAL will show the widget, and then make a call to the delegate for CanActivate() to know if it can activate the window. NativeWidgetMac::ShowWithWindowState() with SHOW_STATE_NORMAL will always activate the window. NativeWidgetMac needs to be able to show a window without activating it.
,
Jun 15 2018
grumble.. Widget::Show() already has
CanActivate()
? native_widget_->Show()
: native_widget_->ShowWithWindowState(ui::SHOW_STATE_INACTIVE);
We probably shouldn't be checking CanActivate() in multiple places.
,
Jul 12
,
Nov 23
***UI Mass Triage *** Adding respective labels for expert review.
,
Nov 26
This issue is Fixed now by NativeWidgetMac::Show() having the correct behavior for ui::SHOW_STATE_INACTIVE. |
|||||
►
Sign in to add a comment |
|||||
Comment 1 by ellyjo...@chromium.org
, Jun 6 2018Status: Assigned (was: Untriaged)