-
Notifications
You must be signed in to change notification settings - Fork 92
Closed
Labels
BugSomething isn't workingSomething isn't working
Description
Description
Like the title says, i'm unable to paste text (typing CTRL-V or clicking right's mouse) button to gossip. But there's 3 types of this behaviour:
- NOT WORK: A yanked text from another app (browser, file editor, etc.) -> paste to gossip;
- NOT WORK: A yanked text from from gossip -> paste to another app (browser, file editor, etc.);
- WORK: A Yanked text from gossip -> paste to gossip.
OS Summary
- OS: Archlinux
- Kernel: 6.6.9-arch1-1
- architeture: x86_64
Opengl summary
- Version: 3.3 (Core Profile) Mesa 23.3.2-arch1.2
- renderer: Mesa Intel(R) HD Graphics 2000 (SNB GT1)
- vendor: Intel
Catching the error
Reading this commented thread, i was able to catch the specific error using RUST_LOG=debug (i removed timestamps to better readability):
INFO gossip-lib/src/filter.rs:30: No spam filter: No such file or directory (os error 2)
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/lib.rs:226: Using the glow renderer
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:141: Entering the winit event loop (run_return)…
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/file_storage.rs:46: Loading app state from "/home/qlrd/.local/share/gossip/app.ron"…
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:471: trying to create glutin Display with config: ConfigTemplateBuilder { template: ConfigTemplate { color_buffer_type: Rgb { r_size: 8, g_size: 8, b_size: 8 }, alpha_size: 8, depth_size: 0, stencil_size: 0, num_samples: None, min_swap_interval: None, max_swap_interval: None, config_surface_types: WINDOW, api: None, transparency: false, single_buffering: false, stereoscopy: None, float_pixels: false, max_pbuffer_width: None, hardware_accelerated: None, max_pbuffer_height: None, native_window: None } }
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:493: using the first config from config picker closure. config: Egl(Config { inner: Config { raw: EglConfig(0x559cc6c2a980), display: Khr(0x559cc6aa2360) } })
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:506: successfully created GL Display with version: EGL 1.5 and supported features: CONTEXT_ROBUSTNESS | CONTEXT_NO_ERROR | FLOAT_PIXEL_FORMAT | SWAP_CONTROL | CREATE_ES_CONTEXT | MULTISAMPLING_PIXEL_FORMATS | SRGB_FRAMEBUFFERS
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:512: creating gl context using raw window handle: Some(Wayland(WaylandWindowHandle { surface: 0x559cc6c2c960 }))
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:574: running on_resume fn.
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:588: creating surface with attributes: SurfaceAttributes { srgb: None, single_buffer: false, width: Some(1920), height: Some(1013), largest_pbuffer: false, raw_window_handle: Some(Wayland(WaylandWindowHandle { surface: 0x559cc6c2c960 })), native_pixmap: None, _ty: PhantomData<glutin::surface::WindowSurface> }
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:598: surface created successfully: Egl(Surface { display: Khr(0x559cc6aa2360), config: EglConfig(0x559cc6c2a980), raw: 0x559cc6c623f0, native_window: Some(Wayland(0x559cc6c38300)), type: Window }).making context current
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/eframe/src/native/run.rs:606: made context current. setting swap interval for surface
2024-01-05T11:47:58.254257Z DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui_glow/src/painter.rs:115:
opengl version: 3.3 (Core Profile) Mesa 23.3.2-arch1.2
opengl renderer: Mesa Intel(R) HD Graphics 2000 (SNB GT1)
opengl vendor: Intel
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui_glow/src/shader_version.rs:27: Shader version: Gl140 ("3.30").
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui_glow/src/painter.rs:131: Shader header: "#version 140\n".
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui_glow/src/painter.rs:140: SRGB texture Support: true
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui_glow/src/vao.rs:116: GL version: "3.3 (Core Profile) Mesa 23.3.2-arch1.2".
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui-winit/src/clipboard.rs:115: Initializing arboard clipboard…
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui-winit/src/clipboard.rs:140: Initializing smithay clipboard…
INFO gossip-bin/src/ui/mod.rs:496: DPI (native): 72
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui-winit/src/clipboard.rs:115: Initializing arboard clipboard…
DEBUG /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui-winit/src/clipboard.rs:140: Initializing smithay clipboard…
ERROR /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui-winit/src/clipboard.rs:65: smithay paste error: offer receive failed.
ERROR /usr/local/cargo/git/checkouts/egui-8c292eaa01d4c64e/50393e4/crates/egui-winit/src/clipboard.rs:65: smithay paste error: offer receive failed.
The last lines caught attention, which were the last action performing the 1st procedure described in the list above:
INFO: ... gossip-bin/src/ui/mod.rs:496: DPI (native): 72
DEBUG: ... crates/egui-winit/src/clipboard.rs:115: Initializing arboard clipboard…
DEBUG: ... crates/egui-winit/src/clipboard.rs:140: Initializing smithay clipboard…
ERROR: ... crates/egui-winit/src/clipboard.rs:65: smithay paste error: offer receive failed.
ERROR: ... crates/egui-winit/src/clipboard.rs:65: smithay paste error: offer receive failed.
gustavklopp
Metadata
Metadata
Assignees
Labels
BugSomething isn't workingSomething isn't working