From kde-commits Wed May 05 22:42:09 2004 From: =?utf-8?q?Lu=C3=ADs=20Pedro=20Coelho?= Date: Wed, 05 May 2004 22:42:09 +0000 To: kde-commits Subject: KDE_3_2_BRANCH: kdegraphics/kghostview Message-Id: <20040505224209.C1A351D90 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=108379693706339 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() ); }