Merge pull request #1 from ddevault/master

Fix output selection
vencrypt
Andri Yngvason 2019-12-30 21:35:10 +00:00 committed by GitHub
commit 9a634df223
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,6 @@ This is a VNC server for wlroots based Wayland compositors.
* neatvnc
* OpenGL ES V2.0
* pixman
* sway
### Build Dependencies
* GCC

View File

@ -504,6 +504,7 @@ int wayvnc_usage(FILE* stream, int rc)
"Usage: wayvnc [options]\n"
"\n"
" -c,--frame-capturing=screencopy|dmabuf Select frame capturing backend.\n"
" -o,--output=<id> Select output to capture.\n"
" -k,--keyboard=<layout> Select keyboard layout.\n"
" -h,--help Get help (this text).\n"
"\n";
@ -577,13 +578,13 @@ int main(int argc, char* argv[])
log_error("No such output\n");
goto failure;
}
}
} else {
out = output_first(&self.outputs);
if (!out) {
log_error("No output found\n");
goto failure;
}
}
self.selected_output = out;
self.dmabuf_backend.fc.wl_output = out->wl_output;