put the useable border styles in one place
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -302,8 +302,8 @@ GtkWidget* wxPizza::New(long windowStyle)
|
||||
pizza->m_scroll_x = 0;
|
||||
pizza->m_scroll_y = 0;
|
||||
pizza->m_is_scrollable = (windowStyle & (wxHSCROLL | wxVSCROLL)) != 0;
|
||||
pizza->m_border_style =
|
||||
int(windowStyle & (wxBORDER_SIMPLE | wxBORDER_RAISED | wxBORDER_SUNKEN | wxBORDER_THEME));
|
||||
// mask off border styles not useable with wxPizza
|
||||
pizza->m_border_style = int(windowStyle & BORDER_STYLES);
|
||||
gtk_fixed_set_has_window(GTK_FIXED(widget), true);
|
||||
gtk_widget_add_events(widget,
|
||||
GDK_EXPOSURE_MASK |
|
||||
|
Reference in New Issue
Block a user