After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 74816 - Bug Buddy 2 doesn't respect the UI guidelines
Bug Buddy 2 doesn't respect the UI guidelines
Status: RESOLVED FIXED
Product: bug-buddy
Classification: Deprecated
Component: general
2.1.x(GNOME2.x)
Other Linux
: Normal minor
: ---
Assigned To: Bug-buddy Maintainers
Bug-buddy Maintainers
Depends on:
Blocks:
 
 
Reported: 2002-03-15 17:53 UTC by Ettore Perazzoli
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.0


Attachments
Fixes final Cancel/Submit dialog to adhere to UI Guidlines. (1.50 KB, patch)
2002-05-07 18:37 UTC, Archit Baweja
none Details | Review
Same patch with enums instead of stupid int constants. (1.69 KB, patch)
2002-05-07 19:09 UTC, Archit Baweja
none Details | Review

Description Ettore Perazzoli 2002-03-15 17:53:50 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."
Comment 1 Archit Baweja 2002-05-07 18:37:35 UTC
Created attachment 8259 [details] [review]
Fixes final Cancel/Submit dialog to adhere to UI Guidlines.
Comment 2 jacob berkman 2002-05-07 18:40:47 UTC
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);
Comment 3 jacob berkman 2002-05-07 18:42:59 UTC
also submit should have a mnemonic: _("_Submit")
Comment 4 Archit Baweja 2002-05-07 19:09:56 UTC
Created attachment 8261 [details] [review]
Same patch with enums instead of stupid int constants.
Comment 5 jacob berkman 2002-05-07 19:18:05 UTC
please switch the REPONSE_ and gtk_dialog_run order in the if, and
then feel free to commit.