0bca5bdea6
- allow turning on/off extra widgets for developers (HUD dialog: colors, rendering dialog: visualization of shadow edges), and to turn on/off new - property key handler ('/'-key) Both features are off by default, and their state is saved to autosave.xml.
53 lines
1.1 KiB
XML
53 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<PropertyList>
|
|
<name>devel-extensions</name>
|
|
<modal>false</modal>
|
|
<layout>vbox</layout>
|
|
|
|
<text>
|
|
<label>Configure Development Extensions</label>
|
|
</text>
|
|
|
|
<hrule/>
|
|
|
|
<group>
|
|
<layout>vbox</layout>
|
|
<halign>center</halign>
|
|
|
|
<checkbox>
|
|
<halign>left</halign>
|
|
<label>Enable development dialog widgets (HUD and rendering dialog)</label>
|
|
<property>/sim/gui/devel-widgets</property>
|
|
<binding>
|
|
<command>dialog-apply</command>
|
|
</binding>
|
|
</checkbox>
|
|
|
|
<checkbox>
|
|
<halign>left</halign>
|
|
<label>Enable '/'-key property handler (see $FG_ROOT/Nasal/prop-key-handler.nas)</label>
|
|
<property>/sim/input/property-key-handler</property>
|
|
<binding>
|
|
<command>dialog-apply</command>
|
|
</binding>
|
|
</checkbox>
|
|
</group>
|
|
|
|
<group>
|
|
<layout>hbox</layout>
|
|
<empty><stretch>true</stretch></empty>
|
|
|
|
<button>
|
|
<legend>Close</legend>
|
|
<default>true</default>
|
|
<key>Esc</key>
|
|
<binding>
|
|
<command>dialog-apply</command>
|
|
</binding>
|
|
<binding>
|
|
<command>dialog-close</command>
|
|
</binding>
|
|
</button>
|
|
</group>
|
|
</PropertyList>
|