X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e30d94eff7dca642729cb2f557650e8f2ebc61f..60435227b10297510316a88f67758fb6b6d93c10:/src/aui/tabartgtk.cpp diff --git a/src/aui/tabartgtk.cpp b/src/aui/tabartgtk.cpp index e57ca3dd3f..1c86fbe9d0 100644 --- a/src/aui/tabartgtk.cpp +++ b/src/aui/tabartgtk.cpp @@ -4,7 +4,6 @@ // Author: Jens Lody and Teodor Petrov // Modified by: // Created: 2012-03-23 -// RCS-ID: $Id$ // Copyright: (c) 2012 Jens Lody // and Teodor Petrov // Licence: wxWindows licence @@ -383,7 +382,8 @@ void wxAuiGtkTabArt::DrawTab(wxDC& dc, wxWindow* wnd, const wxAuiNotebookPage& p *out_button_rect = DrawCloseButton(dc, widget, close_button_state, rect, wxRIGHT, &area); } - tab_rect.width = std::min(tab_rect.width, clip_width); + if ( clip_width < tab_rect.width ) + tab_rect.width = clip_width; *out_tab_rect = tab_rect; dc.DestroyClippingRegion();