fractal/fractal-gtk/res/org.gnome.Fractal.gschema.xml
Christopher Davis fc3593f14a Remember markdown toggle state
Adds a gschema (org.gnome.Fractal.markdown-active) to remember the state
of the markdown toggle. Every time the app starts up it checks the
value of the schema. Every time the switch is toggled the schema's
value changes.

Related to #229
2018-07-23 01:00:44 -04:00

29 lines
834 B
XML

<?xml version="1.0" encoding="utf-8"?>
<schemalist>
<enum id="org.gnome.Fractal.PasswordStorage">
<value nick="Secret Service" value="0"/>
<value nick="Plain text" value="1"/>
</enum>
<schema path="/org/gnome/factal/" id="org.gnome.Fractal">
<key name="password-storage" enum="org.gnome.Fractal.PasswordStorage">
<default>'Secret Service'</default>
<summary>Type of password and token storage</summary>
<description>
Type of password and token storage, default value is: Secret Service
</description>
</key>
<key name="markdown-active" type="b">
<default>false</default>
<summary>If markdown sending is active</summary>
<description>
Whether support for sending markdown messages is on
</description>
</key>
</schema>
</schemalist>