Skip to content

Commit

Permalink
support more encoding options
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 2, 2023
1 parent 431276b commit a64a7da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,10 @@ <h2>Xpra Bug Report</h2>
// the primary encoding
client.set_encoding(encoding);
}
for (const key of ["speed", "min-speed", "quality", "min-quality"]) {
for (const key of [
"scaling.control", "initial_quality", "initial_speed", "auto_refresh_delay",
"speed", "min-speed", "quality", "min-quality",
]) {
const v = getintparam(key, -1);
if (v>=0) {
client.set_encoding_option(key, v);
Expand Down

0 comments on commit a64a7da

Please sign in to comment.