Skip to content

Commit 563669d

Browse files
committed
fix
1 parent fbd936b commit 563669d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/dom/Scrollview.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Scrollview::Scrollview( DOM_ARGS_T )
2525
auto* g = m_inner->GetGeometry();
2626
g->SetWidth( 0 );
2727
g->SetHeight( 0 );
28-
//g->SetOverflowMode( geometry::Geometry::OM_RESIZE );
28+
g->SetOverflowMode( geometry::Geometry::OM_RESIZE );
2929
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 ) );
30+
Log( "RESIZED " + std::to_string( width ) + "x" + std::to_string( height ) );
3131
UpdateScrollbars( width, height );
3232
};
3333
}

0 commit comments

Comments
 (0)