somini / Pixelvision2

Steam Skin created by Pulseh and continued by Mr Late
273 stars 32 forks source link

Need a fully 200% scaled version for HiDPI. #68

Open wdhwg001 opened 8 years ago

wdhwg001 commented 8 years ago

Currently Steam doesn't support DPI scaling, and it seems won't be fixed in a significant period of time.

So the only way is to disable steam.exe's DPI scaling and make everything scale to 200% using skins.

Any wish to save retina displays?

Ps: The browser page can be scaled by adding css3 transforms in webkit.css.

body {
-webkit-transform: scale3d(2.0, 2.0, 1);
transform: scale3d(2.0, 2.0, 1);
transform-origin: 50% 0%;
-webkit-transform-origin: 50% 0%;
}

It's buggy, but it might be the only way.(zoom: 2 does not work.)

somini commented 8 years ago

Have you tried the font size tweaks? That should get you half-way there. It should be easy to increase the size even more.

Scaling everything by 2 would be a daunting task. Most (all?) sizes are specified in pixels, so you'd have to go through every file testing along the way. Is there any skin created specifically for this? If you want to try this out, you can start by the resource/layout/steamrootdialog_gamespage_details.layout file, that's the Library details view.