Browse Source

update var names

master
yggverse 2 months ago
parent
commit
d06538726b
  1. 2
      src/app/browser/window/tab/item/page/input/default/control.rs

2
src/app/browser/window/tab/item/page/input/default/control.rs

@ -38,7 +38,7 @@ impl Control {
// Update children components // Update children components
self.counter.update(chars_left); self.counter.update(chars_left);
self.send.update(match chars_left { self.send.update(match chars_left {
Some(value) => value > 0, Some(left) => left > 0,
None => false, None => false,
}); });
} }

Loading…
Cancel
Save