summaryrefslogtreecommitdiff
path: root/gtk/print_dlg.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_dlg.c
parent5f57d42dac4f0941b758fb9446cab1e1535e875c (diff)
downloadwireshark-2398487dc2c71f8093ba17bdd0bf1a04ee2419b0.tar.gz
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_dlg.c')
-rw-r--r--gtk/print_dlg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/print_dlg.c b/gtk/print_dlg.c
index d73bc57c6d..938c236e26 100644
--- a/gtk/print_dlg.c
+++ b/gtk/print_dlg.c
@@ -321,7 +321,8 @@ export_pdml_cmd_cb(GtkWidget *widget _U_, gpointer data _U_)
static void
print_browse_file_cb(GtkWidget *file_bt, GtkWidget *file_te)
{
- file_selection_browse(file_bt, file_te, "Ethereal: Print to File", FILE_SELECTION_SAVE);
+ file_selection_browse(file_bt, file_te, "Ethereal: Print to File",
+ FILE_SELECTION_WRITE_BROWSE);
}