GameWindow.Size bug
| Project: | AgateLib |
| Version: | 0.3.x-dev |
| Component: | AgateOTK |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
- 393 public override Size Size
- 394 {
- 395 get
- 396 {
- 398 }
- 399 set
- 400 {
- 401 mWindow.Width = value.Width;
- 402 }
- 403 }
Shouldn't be :
- 393 public override Size Size
- 394 {
- 395 get
- 396 {
- 398 }
- 399 set
- 400 {
- 401 mWindow.Width = value.Width;
- mWindow.Height = value.Height; <=======================
- 402 }
- 403 }
Fixed in rev. 1073.
Automatically closed -- issue fixed for 2 weeks with no activity.