Changed default blur size for example

This commit is contained in:
Rick Vogel 2022-09-07 16:32:28 +02:00
parent 028e9155f4
commit 978df049af
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ MainWindow::MainWindow()
auto* const stack = new QskStackBox( layout ); auto* const stack = new QskStackBox( layout );
stack->setAutoLayoutChildren( true ); stack->setAutoLayoutChildren( true );
auto* const blurred = new BlurredBox( stack ); auto* const blurred = new BlurredBox( stack );
blurred->setBlurSize( 16.0 ); blurred->setBlurSize( 20.0 );
blurred->setBoxShapeHint(BlurredBox::Panel, { 40, 40, 40, 40 }); blurred->setBoxShapeHint(BlurredBox::Panel, { 40, 40, 40, 40 });
auto* const l = new QskLinearBox( Qt::Vertical, layout ); auto* const l = new QskLinearBox( Qt::Vertical, layout );
stack->addItem( l ); stack->addItem( l );