-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scaled up UI 200% #161
base: master
Are you sure you want to change the base?
scaled up UI 200% #161
Conversation
Thanks! Not sure this makes sense as the default, though. Nobody has complained about it being too small before. Maybe you could make the user's choice of zoom level persist instead? |
Please don't do this. The OS should compensate for the resolution? Otherwise you could tweak the font size (cmd/ctrl +)? And, to hurt the experience for people without a hiDPI screen, which is probably much more people, by default, is just ridiculous. |
the window object will give you the window size in pixels - I'd suggest to use this to determine a sensful value |
@ds300 There is a previous mention of the issue I ran into: #125 I have found that my change to the scale using + / - is persistant already, just that it is capped at 200% of default. @peteruithoven I had been ctrl +'ing everytime I ran jeztz, but then found the scale option in the source code. I attempted to use that to increase the size, but found that the font became blury. Using my change and then setting the initial scale back to 0.5 would result in the exact same defaults for new users but then allow people like me who would prefer larger text to scale up with out the font becoming blury. |
Sounds sensible. I'm on holiday without a laptop for a few weeks but will
take a look at this later in the month. Cheers.
…On 30 Jan 2017 11:35 pm, "Fuzzwah" ***@***.***> wrote:
@ds300 <https://github.com/ds300> There is a previous mention of the
issue I ran into: #125 <#125> I have
found that my change to the scale using + / - is persistant already, just
that it is capped at 200% of default.
@peteruithoven <https://github.com/peteruithoven> I had been ctrl +'ing
everytime I ran jeztz, but then found the scale option in the source code.
I attempted to use that to increase the size, but found that the font
became blury.
Using my change and then setting the initial scale back to 0.5 would
result in the exact same defaults for new users but then allow people like
me who would prefer larger text to scale up with out the font becoming
blury.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#161 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABL1qcDTxtgN8m_1o_inCM8wyMHYRoZ7ks5rXmW8gaJpZM4LvKJf>
.
|
What I did: config.js, this allows me to zoom in for my bad eyesight, no reason to limit the max to 1 @@ -289 +289 @@
|
Increased font sizes and UI elements by 200% to allow better display on high def screens.
Users on lower res screens can use the - hotkey to scale down if required.