diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-09-08 10:59:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-09-08 10:59:21 +0000 |
commit | e91341e3c3687a2f369cc882f6d2c5d26873eda5 (patch) | |
tree | a48d6d3526472e06b5aba914253cdab9560d9916 /file.c | |
parent | 0caf526d01cde66d5cffe6b228b12e0675c02d7c (diff) | |
download | wireshark-e91341e3c3687a2f369cc882f6d2c5d26873eda5.tar.gz wireshark-e91341e3c3687a2f369cc882f6d2c5d26873eda5.tar.bz2 wireshark-e91341e3c3687a2f369cc882f6d2c5d26873eda5.zip |
Redraw:
the text in all "Follow TCP Stream" windows;
the text in the help window if we have one up;
all hex dump windows;
when GUI preference changes are to be applied, so that font changes and
"Follow TCP Stream" color changes show up.
Update both the Roman and bold font when the font is changed.
Don't decrement the reference counts on the old Roman and bold fonts
until that's all done.
svn path=/trunk/; revision=2401
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,7 +1,7 @@ /* file.c * File I/O routines * - * $Id: file.c,v 1.214 2000/09/08 09:49:17 guy Exp $ + * $Id: file.c,v 1.215 2000/09/08 10:58:51 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -1557,8 +1557,7 @@ select_packet(capture_file *cf, int row) clear_tree_and_hex_views(); proto_tree_draw(cf->protocol_tree, tree_view); packet_hex_print(GTK_TEXT(byte_view), cf->pd, cf->current_frame->cap_len, - -1, -1, cf->current_frame->flags.encoding, - prefs.gui_hex_dump_highlight_style); + -1, -1, cf->current_frame->flags.encoding); /* A packet is selected. */ set_menus_for_selected_packet(TRUE); |