Skip to content

Commit

Permalink
Merge pull request #37093 from elpaso/bugfix-gh33682-image-size-in-at…
Browse files Browse the repository at this point in the history
…tachment-widget

Fix image size ignored in image widget
  • Loading branch information
elpaso committed Jun 11, 2020
2 parents 48b5d5c + 72c0ae7 commit 0cd636e
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 0cd636e

Please sign in to comment.