hoffstadt / hoffstadt/DearPyGui
Secure coding is not enabled
- Dominant language
- C++
- Stars
- 15.6k
- Forks
- 783
- PR merge metrics
- No merged PRs in 30d
Description
## Version of Dear PyGui
Version: 1.10.0
Operating System: macOS Sonoma 14.0
## My Issue/Question
When running a dpg app, I get:
```
Python[2292:67199] WARNING: Secure coding is not enabled for restorable state! Enable secure coding by implementing NSApplicationDelegate.applicationSupportsSecureRestorableState: and returning YES.
```
## To Reproduce
Be on macOS Sonoma and run a dpg app
## Expected behavior
The warning should not appear
## Standalone, minimal, complete and verifiable example
```python
import dearpygui.dearpygui as dpg
dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()
with dpg.window(label="tutorial"):
dpg.add_button(label="Press me")
dpg.show_viewport()
dpg.start_dearpygui()
dpg.destroy_context()
```
Contributor guide
Assessment
This issue has not been assessed yet.