- Moderator
- #1
Problem:
An imagelist was properly resized on the X/Y placement, but the subitems were not. See screenshots:

Default window-size; 720x576

1920x1080 (skin design size)
Observe how the stars under the poster are excactly same size (compare images in 100% zoom), even though other elements are scaled to size.
Solution:
Resize width and height of the texture (stars) before creating the images
Patch against SVN 27318 attached.
Screenshot below shows the fix applied.

Default window-size; 720x576
An imagelist was properly resized on the X/Y placement, but the subitems were not. See screenshots:

Default window-size; 720x576

1920x1080 (skin design size)
Observe how the stars under the poster are excactly same size (compare images in 100% zoom), even though other elements are scaled to size.
Solution:
Resize width and height of the texture (stars) before creating the images
Code:
GUIGraphicsContext.ScaleHorizontal(ref _textureWidth);
GUIGraphicsContext.ScaleVertical(ref _textureHeight);
Patch against SVN 27318 attached.
Screenshot below shows the fix applied.

Default window-size; 720x576