git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3373
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
else {
GetClientSize(&ClientWidth, &ClientHeight);
else {
GetClientSize(&ClientWidth, &ClientHeight);
+#ifndef __WXMSW__
+ // VS : this looks extremely ugly under windoze, better fix needed!
SetScrollbars(1, 1, 0, ClientHeight * 2); // always on
SetScrollbars(1, 1, 0, ClientHeight * 2); // always on
GetClientSize(&ClientWidth, &ClientHeight);
m_Cell -> Layout(ClientWidth);
if (ClientHeight < m_Cell -> GetHeight()) {
GetClientSize(&ClientWidth, &ClientHeight);
m_Cell -> Layout(ClientWidth);
if (ClientHeight < m_Cell -> GetHeight()) {
}
else { /* we fit into window, no need for scrollbars */
SetScrollbars(1, 1, 0, 0); // disable...
}
else { /* we fit into window, no need for scrollbars */
SetScrollbars(1, 1, 0, 0); // disable...
+ GetClientSize(&ClientWidth, &ClientHeight);
m_Cell -> Layout(ClientWidth); // ...and relayout
}
}
m_Cell -> Layout(ClientWidth); // ...and relayout
}
}