You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gnome-commander/gnome-commander-rev1874-hex...

19 lines
751 B

Index: src/intviewer/text-render.cc
===================================================================
--- src/intviewer/text-render.cc (revision 1874)
+++ src/intviewer/text-render.cc (working copy)
@@ -1954,7 +1954,12 @@
show_marker = (marker_start!=marker_end);
text_render_utf8_clear_buf(w);
- if (w->priv->hex_offset_display)
+ // Temporary workaround
+ // Currently when "_Decimal Offset in Hexdump" is set,
+ // hex_offset_display is set, however at this state offset must
+ // be displayed in decimal!!
+
+ if (!(w->priv->hex_offset_display))
text_render_utf8_printf(w, "%08lx ", (unsigned long)start_of_line);
else
text_render_utf8_printf(w, "%09lu ", (unsigned long)start_of_line);