fix: typos in src/ and subdirectories (#11727)

Found via codespell
This commit is contained in:
luzpaz
2025-09-17 01:37:44 -04:00
committed by GitHub
parent 3176391693
commit e14e850e10
10 changed files with 14 additions and 14 deletions

View File

@@ -83,7 +83,7 @@ pub mod client {
// https://github.com/rustdesk/rustdesk/pull/9019#issuecomment-2295252388
// There may be a bug in Rdp input on Gnome util Ubuntu 24.04 (Gnome 46)
//
// eg. Resultion 800x600, Fractional scale: 200% (logic size: 400x300)
// eg. Resolution 800x600, Fractional scale: 200% (logic size: 400x300)
// https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.impl.portal.RemoteDesktop.html#:~:text=new%20pointer%20position-,in%20the%20streams%20logical%20coordinate%20space,-.
// Then (x,y) in `mouse_move_to()` and `mouse_move_relative()` should be scaled to the logic size(stream.get_size()), which is from (0,0) to (400,300).
// For Ubuntu 24.04(Gnome 46), (x,y) is restricted from (0,0) to (400,300), but the actual range in screen is:

View File

@@ -19,7 +19,7 @@ b. 3 seconds timeout => update ratio according to network delay
When network delay < DELAY_THRESHOLD_150MS, increase ratio, max 150kbps;
When network delay >= DELAY_THRESHOLD_150MS, decrease ratio;
adjust betwen FPS and ratio:
adjust between FPS and ratio:
When network delay < DELAY_THRESHOLD_150MS, fps is always higher than the minimum fps, and ratio is increasing;
When network delay >= DELAY_THRESHOLD_150MS, fps is always lower than the minimum fps, and ratio is decreasing;