setting to prefer os native file dialog uis (off by default because they are slow and bad)

This commit is contained in:
Ryan Fleury
2025-05-20 15:59:49 -07:00
parent 2d5bf9efc2
commit 25dda717ad
8 changed files with 61 additions and 1 deletions
+4
View File
@@ -279,6 +279,10 @@ RD_VocabTable:
//- rjf: windows style menu bar
@default(1) @display_name('Focus Menu Bar With Alt') @description("Mimics standard Windows behavior of focusing the menu bar using the Alt key.")
'focus_menu_bar_with_alt': bool,
//- rjf: native filesystem dialogues
@default(0) @display_name('Use Native File System Dialog') @description("Uses the operating system's file system dialog box, rather than the debugger's built-in UI.")
'use_native_file_system_dialog': bool,
}
```
}