-
-
Notifications
You must be signed in to change notification settings - Fork 961
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
Support named timezones #2447
base: master
Are you sure you want to change the base?
Support named timezones #2447
Conversation
Instead of just UTC+/UTC- offsets, support named timezones. These will adjust for DST correctly.
I think I've resolved those concerns, although I'm not especially familiar with the UI frameworks. I think that control would also be improved if it was replaced with a text field using autocomplete and validation (rather than a very, very long list), but that seems a little too ambitious for now. |
@@ -22,7 +22,7 @@ public struct Popup_c_s { | |||
} | |||
|
|||
public struct Settings_c_s { | |||
public let width: CGFloat = 540 | |||
public let width: CGFloat = 684 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did you change the settings window width?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Widening the Timezone column made the Name column unacceptably small, as the table is sized to fit the settings window. Increasing the overall width fixed that. But perhaps there is a better approach?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if I will increase the size of the settings window for such a small feature the width will be 10000+. So it's not acceptable at all.
- scrollable table
- resizing another tabs
- etc
but the best solution will be just crop the text inside the select with ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whatever you think best. Just be aware that timezones are most significant on the right hand side, so truncating may make them ambiguous. Maybe a text field with autocomplete (and validation) for entry would be better, then you can truncate to the left when displaying.
Instead of just UTC+/UTC- offsets, support named timezones. These will adjust for DST correctly.