diff --git a/docs/changes.txt b/docs/changes.txt index 8161db70a1..fa5ae31e70 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -117,6 +117,7 @@ wxGTK: - Add support for clipping in GNOME print backend. - Speed up wxBitmap::Rescale() - Add right button event for wxToolbar's tools (Tim Kosse) +- Don't unconditionally add wxCAPTION style to wxMiniFrame 2.8.4 diff --git a/src/gtk/minifram.cpp b/src/gtk/minifram.cpp index 6a99ba396b..3a25d85556 100644 --- a/src/gtk/minifram.cpp +++ b/src/gtk/minifram.cpp @@ -325,8 +325,6 @@ bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title const wxPoint &pos, const wxSize &size, long style, const wxString &name ) { - style = style | wxCAPTION; - if ((style & wxCAPTION) || (style & wxTINY_CAPTION_HORIZ) || (style & wxTINY_CAPTION_VERT)) m_miniTitle = 16;