PATCH: Bug 80380



Changes the button ordering of the run display dialog to 
[display][cancel][run] so that it is hig compliant (run is the
affirmative, cancel the negative and display is the alternative in case
anyone was wondering). Still need to add mneumonics, but these
constitute string changes, so we can leave them till later.

ccing eugene and jfleck just in case this patch affects the docs.

dave
? rundisplay.patch
? runordisplay.patch
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/nautilus/ChangeLog,v
retrieving revision 1.5380
diff -p -u -r1.5380 ChangeLog
--- ChangeLog	25 Jun 2002 05:22:02 -0000	1.5380
+++ ChangeLog	25 Jun 2002 16:29:36 -0000
@@ -1,3 +1,9 @@
+2002-06-25 David Bordoley <bordoley msu edu>
+	* src/file-manater/fm-directory-view.c
+	Fixed button ordering on run or display dialog to
+	[display][cancel][run] to be hig compliant. Still
+	need to add mneumonics to be completely hig friendly.
+
 2002-06-25 Rajeev Karale <rajeev karale wipro com
 
 	* nautilus/libnautilus-private/nautilus-volume-monitor.c
Index: src/file-manager/fm-directory-view.c
===================================================================
RCS file: /cvs/gnome/nautilus/src/file-manager/fm-directory-view.c,v
retrieving revision 1.540
diff -p -u -r1.540 fm-directory-view.c
--- src/file-manager/fm-directory-view.c	31 May 2002 05:41:53 -0000	1.540
+++ src/file-manager/fm-directory-view.c	25 Jun 2002 16:29:53 -0000
@@ -4763,10 +4763,10 @@ get_executable_text_file_action (FMDirec
 
 	dialog = eel_create_question_dialog (prompt,
 					     _("Run or Display?"),
-					     _("Run"), RESPONSE_RUN,
 					     _("Display"), RESPONSE_DISPLAY,
+					     GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
 					     fm_directory_view_get_containing_window (view));
-	gtk_dialog_add_button (dialog, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
+	gtk_dialog_add_button (dialog, _("Run"), RESPONSE_RUN );
 	gtk_widget_show (GTK_WIDGET (dialog));
 	
 	g_free (prompt);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]