gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r9836: Set valid bounds to full wind


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r9836: Set valid bounds to full window, not 1 less. Fixes graphical rubbish on the
Date: Thu, 25 Sep 2008 09:47:41 +0200
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9836
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Thu 2008-09-25 09:47:41 +0200
message:
  Set valid bounds to full window, not 1 less. Fixes graphical rubbish on the
  bottom line of some movies.
modified:
  gui/gtk.cpp
  gui/gui.cpp
=== modified file 'gui/gtk.cpp'
--- a/gui/gtk.cpp       2008-09-24 07:44:50 +0000
+++ b/gui/gtk.cpp       2008-09-25 07:47:41 +0000
@@ -819,7 +819,7 @@
     _width = width;
     _height = height;
     
-    _validbounds.setTo(0, 0, _width-1, _height-1);
+    _validbounds.setTo(0, 0, _width, _height);
     _glue->setRenderHandlerSize(_width, _height);
     
     return true;

=== modified file 'gui/gui.cpp'
--- a/gui/gui.cpp       2008-09-24 07:44:50 +0000
+++ b/gui/gui.cpp       2008-09-25 07:47:41 +0000
@@ -404,7 +404,7 @@
 
        _width = width;
        _height = height;
-       _validbounds.setTo(0, 0, _width-1, _height-1);
+       _validbounds.setTo(0, 0, _width, _height);
 
        updateStageMatrix();
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]