The unified diff between revisions [24fb0b25..] and [8032bf83..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'ui.hh'
#
#
# patch "ui.hh"
# from [31deb8bf636c6a0518244e3e7d487d6cb08413a3]
# to [4ed004af61868096881ebcd9688ba6f880359cdf]
#
============================================================
--- ui.hh 31deb8bf636c6a0518244e3e7d487d6cb08413a3
+++ ui.hh 4ed004af61868096881ebcd9688ba6f880359cdf
@@ -25,12 +25,13 @@ struct ticker
size_t previous_total;
bool kilocount;
bool use_total;
+ bool may_skip_display;
std::string keyname;
std::string name; // translated name
std::string shortname;
size_t count_size;
ticker(std::string const & n, std::string const & s, size_t mod = 64,
- bool kilocount=false);
+ bool kilocount=false, bool skip_display=false);
void set_total(size_t tot) { use_total = true; total = tot; }
void set_count_size(size_t csiz) { count_size = csiz; }
void operator++();