Johannes Kneer

Results 4 issues of Johannes Kneer

st. camera_input returns a picture. The dimensions of that picture depend on the camera widget size as displayed in the browser. ### Problem Getting randomly sized pictures from the camera_input...

enhancement
st.camera_input

I encounter frequent reboots of multigeiger on v1.16.0. The attached serial log has 2 reboots within a minute at the end. ``` 10:33:17.335 -> Guru Meditation Error: Core 1 panic'ed...

### Checklist - [X] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar issues. - [X] I added a very descriptive title to this issue. - [X] I have provided sufficient...

type:bug
status:confirmed
priority:P4
feature:st.session_state

I'm trying to mitigate the problems described in #78. Changed invokation from: `pipeline.show(&mut PipelineViewer, pipeline_style, self.title.clone(), ui,);` to: ``` SnarlWidget::new() .id(egui::Id::new(self.title.clone())) .style(*pipeline_style) .show(pipeline, &mut PipelineViewer, ui); ``` After the update...