ShowImage :

* Changing pictures using the arrow keys while being in a picture folder in tracker would quit the 
  fullscreen mode (if you happen to be in that mode) because it tries to resize the window to fit
  the new picture.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34194 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Saint-Pierre 2009-11-23 02:54:13 +00:00
parent de2af681ea
commit f75975a907
1 changed files with 2 additions and 1 deletions

View File

@ -631,7 +631,8 @@ ShowImageWindow::MessageReceived(BMessage *message)
if (messageProvidesSize) {
_UpdateResizerWindow(fWidth, fHeight);
if (!fImageView->GetZoomToBounds()
&& !fImageView->GetShrinkToBounds())
&& !fImageView->GetShrinkToBounds()
&& !fFullScreen)
WindowRedimension(fImageView->GetBitmap());
}