mirror of
https://invent.kde.org/graphics/okular
synced 2024-10-28 19:28:38 +00:00
Merge remote-tracking branch 'origin/Applications/15.04'
This commit is contained in:
commit
146c6d85bb
2 changed files with 3 additions and 3 deletions
|
@ -125,7 +125,7 @@ static KJSObject docGetExternal( KJSContext *, void *object )
|
|||
|
||||
const bool isShell = ( widget
|
||||
&& widget->parentWidget()
|
||||
&& widget->parentWidget()->objectName() == QLatin1String( "okular::Shell" ) );
|
||||
&& widget->parentWidget()->objectName().startsWith( QLatin1String( "okular::Shell" ) ) );
|
||||
return KJSBoolean( !isShell );
|
||||
}
|
||||
|
||||
|
|
4
part.cpp
4
part.cpp
|
@ -239,8 +239,8 @@ static Okular::EmbedMode detectEmbedMode( QWidget *parentWidget, QObject *parent
|
|||
Q_UNUSED( parentWidget );
|
||||
|
||||
if ( parent
|
||||
&& ( parent->objectName() == QLatin1String( "okular::Shell" )
|
||||
|| parent->objectName() == QLatin1String( "okular/okular__Shell" ) ) )
|
||||
&& ( parent->objectName().startsWith( QLatin1String( "okular::Shell" ) )
|
||||
|| parent->objectName().startsWith( QLatin1String( "okular/okular__Shell" ) ) ) )
|
||||
return Okular::NativeShellMode;
|
||||
|
||||
if ( parent
|
||||
|
|
Loading…
Reference in a new issue