Lukas Fürmetz
Lukas Fürmetz
For me it's the same issue as described here https://github.com/tumashu/company-posframe/issues/2. Setting `x-gtk-resize-child-frames` to `'hide` or `'resize-mode` fixes the issue.
Should be feasible. I implemented a POC in the branch `autotype`.
@SaxElectronics nice 👍 Your solution is actually cleaner, I just use a dummy config file: ``` empty_config_file = NamedTemporaryFile(delete=False, suffix=".py") empty_config_file.close() config = PyXCP() config.config_file = empty_config_file.name config._read_configuration(config.config_file) ```