Skip to content

Commit

Permalink
Added 225% scaling factory
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKoell committed Dec 20, 2024
1 parent 2e6ae8b commit c1f5ee0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/RoyalApps.Community.Rdp.WinForms/Controls/RdpControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public void Connect()

ApplyInitialScaling();

this.RdpClientConfigured?.Invoke(this, EventArgs.Empty);
RdpClientConfigured?.Invoke(this, EventArgs.Empty);

RdpClient!.Connect();
}
Expand Down Expand Up @@ -351,7 +351,8 @@ public void ZoomIn()
125 => 150,
150 => 175,
175 => 200,
200 => 250,
200 => 225,
225 => 250,
250 => 300,
300 => 350,
350 => 400,
Expand All @@ -375,7 +376,8 @@ public void ZoomOut()
400 => 350,
350 => 300,
300 => 250,
250 => 200,
250 => 225,
225 => 200,
200 => 175,
175 => 150,
150 => 125,
Expand Down

0 comments on commit c1f5ee0

Please sign in to comment.