changeset in /hg/icedtea6: 2009-01-21 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Wed Jan 21 14:32:03 PST 2009


changeset fd00fcaea171 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=fd00fcaea171
description:
	2009-01-21  Omair Majid  <omajid at redhat.com>

	    * patches/icedtea-awt-window-size.patch: Update patch.

diffstat:

2 files changed, 6 insertions(+), 2 deletions(-)
ChangeLog                             |    4 ++++
patches/icedtea-awt-window-size.patch |    4 ++--

diffs (26 lines):

diff -r a08ebb168e2f -r fd00fcaea171 ChangeLog
--- a/ChangeLog	Wed Jan 21 17:17:47 2009 -0500
+++ b/ChangeLog	Wed Jan 21 17:30:55 2009 -0500
@@ -1,3 +1,7 @@ 2009-01-21  Omair Majid  <omajid at redhat.
+2009-01-21  Omair Majid  <omajid at redhat.com>
+
+	* patches/icedtea-awt-window-size.patch: Update patch.
+
 2009-01-21  Omair Majid  <omajid at redhat.com>
 
 	* pulseaudio/src/java/org/classpath/icedtea/pulseaudio/PulseAudioClip.java: 
diff -r a08ebb168e2f -r fd00fcaea171 patches/icedtea-awt-window-size.patch
--- a/patches/icedtea-awt-window-size.patch	Wed Jan 21 17:17:47 2009 -0500
+++ b/patches/icedtea-awt-window-size.patch	Wed Jan 21 17:30:55 2009 -0500
@@ -6,9 +6,9 @@
              Rectangle newBounds = constrainBounds(reqBounds.x, reqBounds.y, reqBounds.width, reqBounds.height);
 -            newDimensions = new WindowDimensions(newBounds, newDimensions.getInsets(), newDimensions.isClientSizeSet());
 +            Insets insets = newDimensions.getInsets();
-+            Rectangle fixedBounds = new Rectangle(newBounds.x, newBounds.y, newBounds.width - insets.left - insets.right,
++            Rectangle clientBounds = new Rectangle(newBounds.x, newBounds.y, newBounds.width - insets.left - insets.right,
 +                    newBounds.height - insets.top - insets.bottom);
-+            newDimensions = new WindowDimensions(fixedBounds, insets, newDimensions.isClientSizeSet());
++            newDimensions = new WindowDimensions(newDimensions.isClientSizeSet() ? clientBounds : newBounds , insets, newDimensions.isClientSizeSet());
          }
          XToolkit.awtLock();
          try {



More information about the distro-pkg-dev mailing list