GNOME Bugzilla – Bug 670256
wizard: Add mnemonic accelerator to 'Continue' button
Last modified: 2016-03-31 14:00:38 UTC
Add mnemonic accelerator for 'Continue' and 'Create'.
Created attachment 207825 [details] [review] wizard: Add mnemonic accelerator to 'Continue' button
Review of attachment 207825 [details] [review]: ::: src/wizard.vala @@ +99,2 @@ back_button.sensitive = page != WizardPage.INTRODUCTION; + next_button.label = page != WizardPage.REVIEW ? _("C_ontinue") : _("C_reate"); does it work? (clutter doesn't eat the key?) Is _C bad in this case? (since it's "Continue" OR "Create")
(In reply to comment #2) > Review of attachment 207825 [details] [review]: > > ::: src/wizard.vala > @@ +99,2 @@ > back_button.sensitive = page != WizardPage.INTRODUCTION; > + next_button.label = page != WizardPage.REVIEW ? _("C_ontinue") : > _("C_reate"); > > does it work? (clutter doesn't eat the key?) Yes, it works! > Is _C bad in this case? (since it's "Continue" OR "Create") _C would be my first choice too of course but its already taken by 'Cancel'.
Review of attachment 207825 [details] [review]: ack
Attachment 207825 [details] pushed as 53eb3d5 - wizard: Add mnemonic accelerator to 'Continue' button