aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/print_prefs.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-30 02:02:35 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-30 02:02:35 +0000
commit2398487dc2c71f8093ba17bdd0bf1a04ee2419b0 (patch)
tree8f132e999a1a5a961c0135d1c8d2087cadaf844b /gtk/print_prefs.c
parent5f57d42dac4f0941b758fb9446cab1e1535e875c (diff)
For file browsing dialog boxes, the affirmative button should be "OK",
not "Save". In UN*X with GTK+ 2.x, put the affirmative button in file dialogs to the right of the cancel button, as is done with other dialogs. svn path=/trunk/; revision=12146
Diffstat (limited to 'gtk/print_prefs.c')
-rw-r--r--gtk/print_prefs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/print_prefs.c b/gtk/print_prefs.c
index a55614b82a..ad6e13327a 100644
--- a/gtk/print_prefs.c
+++ b/gtk/print_prefs.c
@@ -134,7 +134,8 @@ GtkWidget * printer_prefs_show(void)
static void
printer_browse_file_cb(GtkWidget *file_bt, GtkWidget *file_te)
{
- file_selection_browse(file_bt, file_te, "Ethereal: Print to a File", FILE_SELECTION_SAVE);
+ file_selection_browse(file_bt, file_te, "Ethereal: Print to a File",
+ FILE_SELECTION_WRITE_BROWSE);
}