Skip to content

Commit

Permalink
fix cef debug toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
AAGaming00 committed Jun 27, 2024
1 parent d067fe6 commit a8d5578
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export default function RemoteDebuggingSettings() {
value={allowRemoteDebugging || false}
onChange={(toggleValue) => {
setAllowRemoteDebugging(toggleValue);
if (toggleValue) DeckyBackend.call('allow_remote_debugging');
else DeckyBackend.call('disallow_remote_debugging');
if (toggleValue) DeckyBackend.call('utilities/allow_remote_debugging');
else DeckyBackend.call('utilities/disallow_remote_debugging');
}}
/>
</Field>
Expand Down

0 comments on commit a8d5578

Please sign in to comment.