CVS commit by luis_pedro: Backport fix for 79663 [the zoom issue is still pending, however] CCMAIL: 79663@bugs.kde.org M +2 -7 kgv_view.cpp 1.172.2.4 --- kdegraphics/kghostview/kgv_view.cpp #1.172.2.3:1.172.2.4 @@ -965,11 +965,6 @@ void KGVRun::foundMimeType( const QStrin void KGVPart::updateFullScreen( bool fs ) { - if ( fs ) { - _markList->hide(); - _scrollBox->hide(); - } else { - _markList->show(); - _scrollBox->show(); - } + if ( fs ) showMarkList( false ); + else showMarkList( _showPageList->isChecked() ); }