implement ShowWithoutActivating for GTK+
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
335b5afa77
commit
52802b0727
@ -889,6 +889,12 @@ bool wxTopLevelWindowGTK::Show( bool show )
|
||||
return change;
|
||||
}
|
||||
|
||||
void wxTopLevelWindowGTK::ShowWithoutActivating()
|
||||
{
|
||||
gtk_window_set_focus_on_map(GTK_WINDOW(m_widget), false);
|
||||
Show(true);
|
||||
}
|
||||
|
||||
void wxTopLevelWindowGTK::Raise()
|
||||
{
|
||||
gtk_window_present( GTK_WINDOW( m_widget ) );
|
||||
|
Loading…
Reference in New Issue
Block a user