Skip to content

Commit

Permalink
Fix image size ignored in image widget
Browse files Browse the repository at this point in the history
Fixes #33682  (maybe)
  • Loading branch information
elpaso committed Jun 10, 2020
1 parent dc6d34b commit 72c0ae7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/gui/editorwidgets/qgsexternalresourcewidgetwrapper.cpp
Expand Up @@ -185,6 +185,14 @@ void QgsExternalResourceWidgetWrapper::initWidget( QWidget *editor )
{
mQgsWidget->fileWidget()->setFilter( cfg.value( QStringLiteral( "FileWidgetFilter" ) ).toString() );
}
if ( cfg.contains( QStringLiteral( "DocumentViewerHeight" ) ) )
{
mQgsWidget->setDocumentViewerHeight( cfg.value( QStringLiteral( "DocumentViewerHeight" ) ).toInt( ) );
}
if ( cfg.contains( QStringLiteral( "DocumentViewerWidth" ) ) )
{
mQgsWidget->setDocumentViewerWidth( cfg.value( QStringLiteral( "DocumentViewerWidth" ) ).toInt( ) );
}
}

if ( mLineEdit )
Expand Down

0 comments on commit 72c0ae7

Please sign in to comment.