feat: add activation on fill
All checks were successful
Nix Build / nix build (push) Successful in 1m38s

This commit is contained in:
atagen 2025-07-05 15:30:44 +10:00
parent 555ffca915
commit 52a17e19e9
3 changed files with 21 additions and 0 deletions

View file

@ -48,6 +48,7 @@ impl Default for TagState {
pub struct Config {
pub prepopulate: u8,
pub strict: bool,
pub activation_with_fill: bool,
}
impl Default for Config {
@ -55,6 +56,7 @@ impl Default for Config {
Self {
prepopulate: 3,
strict: true,
activation_with_fill: true,
}
}
}