Change default image quality.

This commit is contained in:
Jared Goodwin 2020-03-21 12:01:07 -07:00
parent f74ba2fe2f
commit e7ed99e098

View File

@ -13,11 +13,11 @@ namespace Remotely.ScreenCast.Core.Models
{
public class Viewer : IDisposable
{
private long imageQuality = 50;
private long imageQuality;
public Viewer()
{
ImageQuality = 50;
ImageQuality = 75;
}
public bool AutoAdjustQuality { get; internal set; } = true;
public ICapturer Capturer { get; set; }