diff options
| author | Joan Moreau <jom@grosjo.net> | 2021-01-17 17:36:03 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2021-01-17 17:54:48 +0100 |
| commit | 461b00170782106b6fd4d2c2a43d06260aedd985 (patch) | |
| tree | b7ad6705298ca8981d7052d905cc59e6a33aa055 /appinfo | |
| parent | bd88b9058d098ea0302919547a10e75a927b95b1 (diff) | |
| download | grauphel-grosjo-more-note-fields.tar.gz grauphel-grosjo-more-note-fields.zip | |
Add missing standard fields (Tomboy legacy):grosjo-more-note-fields
- Window position X and Y
- Window height and width
- Cursor position
Diffstat (limited to 'appinfo')
| -rwxr-xr-x | appinfo/database.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml index fbc467a..77bb39b 100755 --- a/appinfo/database.xml +++ b/appinfo/database.xml @@ -155,6 +155,48 @@ <length>1024</length> <notnull>true</notnull> </field> + <field> + <name>note_x</name> + <type>integer</type> + <length>6</length> + <notnull>true</notnull> + <default>20</default> + </field> + <field> + <name>note_y</name> + <type>integer</type> + <length>6</length> + <notnull>true</notnull> + <default>20</default> + </field> + <field> + <name>note_width</name> + <type>integer</type> + <length>6</length> + <notnull>true</notnull> + <default>-1</default> + </field> + <field> + <name>note_height</name> + <type>integer</type> + <length>6</length> + <notnull>true</notnull> + <default>-1</default> + </field> + <field> + <name>note_selection_bound_position</name> + <type>integer</type> + <length>6</length> + <notnull>true</notnull> + <default>0</default> + </field> + <field> + <name>note_cursor_position</name> + <type>integer</type> + <length>6</length> + <notnull>true</notnull> + <default>0</default> + </field> </declaration> </table> |
