Merge pull request #2 from leetonidas/master

fixed display of blank bars
main
Nathan Scott 6 years ago committed by GitHub
commit 2f59798b3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      Meter.c

@ -523,6 +523,9 @@ MeterMode* Meter_modes[] = {
static void BlankMeter_updateValues(Meter* this, char* buffer, int size) {
(void) this; (void) buffer; (void) size;
if (size > 0) {
*buffer = 0;
}
}
static void BlankMeter_display(Object* cast, RichString* out) {

Loading…
Cancel
Save