-
Notifications
You must be signed in to change notification settings - Fork 327
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
Make two UI modifications in Welcoming window and Help-About dialog. #2752
Conversation
stellama0208
commented
May 14, 2019
- Replace the pop-up welcoming dialog with a in-panel welcoming page.
- Remove loading messages.
- Add click-to-copy shortcut icon in Help-About Dialog.
- Change the layout of Help-About Dialog.
I merged this in and tried it out. Some observations:
|
Thanks for the advice! Have made another commit to solve the problems mentioned above. |
Btw, the above force-pushed history is just to amend the commit message. |
- Replace the pop-up welcoming dialog with a in-panel welcoming page. - Remove loading messages. - Add click-to-copy shortcut icon in Help-About Dialog. - Change the layout of Help-About Dialog.
I'd like this as part of the next sprint demo :) I'd be happy to approve this PR but i'd like @pmuetschard to give a final OK. |
Sorry, Stella and I looked at it last week and there were a couple of minor things that are still missing here that we talked about, but didn't update the PR.
|
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.
Getting close!
private Label recentIcon; | ||
private Link recentLink; | ||
private Label helpIcon; | ||
private Link helpLink; |
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.
The labels and links can be final.
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.
Thanks for all these constructive opinions! Done all the others except this one. Because I initialize my recentLink outside of the constructor. (Cause that part of initialization is huge). Can I keep it or should I still use some tricks to turn it into final? (Like returning recentLink as a variable in the other initializing part)