Version: (using KDE KDE 3.2.1) Installed from: Debian testing/unstable Packages OS: Linux How to reproduce: Open a document. Disable "show page list". Go fullscreen. Leave fullscreen. Two things: the page list appears and the zoom level chosen for fullscreen remains. Given that the optimum zoom for fullscreen is different to optimum for non-fullscreen, I'd say that it should revert to previous value when exiting fullscreen.
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() ); }
zooming: still a bug in KDE 3.5.10
I don't know if this bug is still relevant, but I don't agree. When changing display mode (or changing image), I had prefer keeping same zoom level. Maybe a good choice would be to have an option about this behavior.
This wish still applies to Okular, and I agree with Julien: if this is ever implemented, it should be optional.