We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd936b commit 563669dCopy full SHA for 563669d
src/ui/dom/Scrollview.cpp
@@ -25,9 +25,9 @@ Scrollview::Scrollview( DOM_ARGS_T )
25
auto* g = m_inner->GetGeometry();
26
g->SetWidth( 0 );
27
g->SetHeight( 0 );
28
- //g->SetOverflowMode( geometry::Geometry::OM_RESIZE );
+ g->SetOverflowMode( geometry::Geometry::OM_RESIZE );
29
g->m_on_resize = [ this ]( const size_t width, const size_t height ) {
30
- //Log( "RESIZED " + std::to_string( width ) + "x" + std::to_string( height ) );
+ Log( "RESIZED " + std::to_string( width ) + "x" + std::to_string( height ) );
31
UpdateScrollbars( width, height );
32
};
33
}
0 commit comments