fn reset()

in src/platform_impl/linux/x11/ime/input_method.rs [239:247]


    fn reset(&mut self) {
        if let Some(ref mut input_method) = self.xmodifiers {
            input_method.reset();
        }

        for input_method in &mut self.fallbacks {
            input_method.reset();
        }
    }