Correct wxSL_VERTICAL addition in r62618.

It was incorrectly added to the case label value instead of flags.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62653 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-11-14 23:15:07 +00:00
parent e098940880
commit 510878aa3d

View File

@@ -418,8 +418,8 @@ void SliderWidgetsPage::CreateSlider()
flags |= wxSL_BOTTOM;
break;
case SliderTicks_Right | wxSL_VERTICAL:
flags |= wxSL_RIGHT;
case SliderTicks_Right:
flags |= wxSL_RIGHT | wxSL_VERTICAL;
break;
default: