diff options
author | Thomas White <taw@physics.org> | 2015-02-23 11:41:33 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-02-23 11:41:33 +0100 |
commit | 4051426a089c2c06c2b5695846a120011bd77519 (patch) | |
tree | e4c132848e3ded50f28d82f25f4080b990b43e6e /src | |
parent | 304e32d31ef70a7e355d4f7b9e9e4adc26856bc0 (diff) |
hdfsee: Fix text in "Go to event" box
Diffstat (limited to 'src')
-rw-r--r-- | src/dw-hdfsee.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dw-hdfsee.c b/src/dw-hdfsee.c index 833ac01c..2f89a04e 100644 --- a/src/dw-hdfsee.c +++ b/src/dw-hdfsee.c @@ -1061,7 +1061,7 @@ static gint displaywindow_set_newevent(GtkWidget *widget, DisplayWindow *dw) if ( ed == NULL ) return 0; dw->event_dialog = ed; - ed->window = gtk_dialog_new_with_buttons("Intensity Boost", + ed->window = gtk_dialog_new_with_buttons("Go to event", GTK_WINDOW(dw->window), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_CANCEL, GTK_RESPONSE_CLOSE, @@ -1078,7 +1078,7 @@ static gint displaywindow_set_newevent(GtkWidget *widget, DisplayWindow *dw) gtk_table_set_col_spacings(GTK_TABLE(table), 5); gtk_box_pack_start(GTK_BOX(vbox), GTK_WIDGET(table), FALSE, FALSE, 0); - label = gtk_label_new("Boost Factor:"); + label = gtk_label_new("Event ID:"); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); gtk_table_attach_defaults(GTK_TABLE(table), GTK_WIDGET(label), 1, 2, 3, 4); |