I'm no fan of that focus ring being drawn inside the wxMiniFrame close button after a click (and release not on the
button), making the button look weird. So... don't focus on click. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
07d04e37fd
commit
1d13cff399
@ -302,6 +302,10 @@ bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title
|
||||
gtk_widget_show( pw );
|
||||
|
||||
GtkWidget *close_button = gtk_button_new();
|
||||
#ifdef __WXGTK24__
|
||||
if (!gtk_check_version(2,4,0))
|
||||
gtk_button_set_focus_on_click( GTK_BUTTON(close_button), FALSE );
|
||||
#endif
|
||||
gtk_container_add( GTK_CONTAINER(close_button), pw );
|
||||
|
||||
gtk_pizza_put( GTK_PIZZA(m_mainWidget),
|
||||
|
Loading…
Reference in New Issue
Block a user