You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2026. It is now read-only.
Hi, thank you for your work. I found a lot of interesting here.
I found a possible issue in SonyCamera class and GetFNumber method: public int GetFNumber() { CameraSetting setting = GetSetting(SettingIds.LiveViewState); return setting != null ? setting.Value : 0; }
I think there should be public int GetFNumber() { CameraSetting setting = GetSetting(SettingIds.FNumber); return setting != null ? setting.Value : 0; }