GameWindow.Size bug

Project:AgateLib
Version:0.3.x-dev
Component:AgateOTK
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed
Description

  1.   393           public override Size Size
  2.   394           {
  3.   395                   get
  4.   396                   {
  5.   397                           return new Size(mWindow.Width, mWindow.Height);
  6.   398                   }
  7.   399                   set
  8.   400                   {
  9.   401                           mWindow.Width = value.Width;
  10.   402                   }
  11.   403           }

Shouldn't be :

  1.   393           public override Size Size
  2.   394           {
  3.   395                   get
  4.   396                   {
  5.   397                           return new Size(mWindow.Width, mWindow.Height);
  6.   398                   }
  7.   399                   set
  8.   400                   {
  9.   401                           mWindow.Width = value.Width;
  10.                                 mWindow.Height = value.Height;           <=======================
  11.   402                   }
  12.   403           }

kanato
Posted - Mon, 10/26/2009 - 07:54
Status:open» fixed

Fixed in rev. 1073.

kanato
Posted - Sat, 11/14/2009 - 00:00
Status:fixed» closed

Automatically closed -- issue fixed for 2 weeks with no activity.