X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3ed2e7ce8217e90bd9c074fea75c43d5629ce5bb..89894079c04bba0ab2fd9efcb421516fc90545cb:/src/common/framecmn.cpp?ds=sidebyside diff --git a/src/common/framecmn.cpp b/src/common/framecmn.cpp index 4432c7e0cb..d5bbdbfb1c 100644 --- a/src/common/framecmn.cpp +++ b/src/common/framecmn.cpp @@ -265,9 +265,9 @@ void wxFrameBase::OnSize(wxSizeEvent& WXUNUSED(event)) // for whatever reasons, wxGTK wants to have a small offset - it // probably looks better with it? #ifdef __WXGTK__ - static const int ofs = 0; -#else static const int ofs = 1; +#else + static const int ofs = 0; #endif child->SetSize(ofs, ofs, clientW - 2*ofs, clientH - 2*ofs);