diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-07-23 03:12:28 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-07-23 03:12:28 +0200 |
commit | ec06f083c49ef9977afd8c51d2cb6cfdf5ebc05e (patch) | |
tree | 4f01ece07a3f44afae389d31b0a3b01e758cddf1 /src/egl.c | |
parent | 9ba96b7205a798d32c2ade05968bc3e1f2ac83f1 (diff) |
Show error if polkit agent is not running
Diffstat (limited to 'src/egl.c')
-rw-r--r-- | src/egl.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -375,6 +375,8 @@ void gsr_egl_unload(gsr_egl *self) { } bool gsr_egl_supports_wayland_capture(gsr_egl *self) { + // TODO: wlroots capture is broken right now (black screen) on amd and multiple monitors + // so it has to be disabled right now. Find out why it happens and fix it. (void)self; return false; //return !!self->wayland.export_manager && self->wayland.num_outputs > 0; |