twostraws / ControlRoom

A macOS app to control the Xcode Simulator.
MIT License
5.77k stars 304 forks source link

Update aspect ratio of powered-on toggle icon + default window width #60

Closed thillsman closed 4 years ago

thillsman commented 4 years ago

First off, this is an amazingly useful app and huge thanks for making it open source. One thing just looked a little odd, so I made a small tweak and figured I'd push up the world's smallest PR.

As-is, the powered-on toggle icon is a little smushed, as SwiftUI's aspectRatio modifer is passed a size. I removed it, so it fits within the frame's width (unchanged). I also added 2 pts of horizontal padding for a little more affordance.

Before: image

After: image

And at the risk of scope-creeping myself 😉, I also noticed on first launch, the window width was a bit tight and updated that to better fit the content.

Before: image

After: image

davedelong commented 4 years ago

Thank you @thillsman!