GNOME Bugzilla – Bug 74816
Bug Buddy 2 doesn't respect the UI guidelines
Last modified: 2004-12-22 21:47:04 UTC
It asks me "Do you want to submit this bug report? No/Yes." It should ask "Do you want to submit this bug report? Cancel/Submit."
Created attachment 8259 [details] [review] Fixes final Cancel/Submit dialog to adhere to UI Guidlines.
two changes: 1. use some enum instead of 0/1 so it's easier to read 2. give each button a line of their own in the add_buttons: gtk_dialog_add_buttons (GTK_DIALOG (dialog), BUTTON1_TEXT, BUTTON1_RESPONSE, BUTTON2_TEXT, BUTTON2_RESPONSE, NULL);
also submit should have a mnemonic: _("_Submit")
Created attachment 8261 [details] [review] Same patch with enums instead of stupid int constants.
please switch the REPONSE_ and gtk_dialog_run order in the if, and then feel free to commit.