summaryrefslogtreecommitdiff
path: root/src/params.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/params.c')
-rw-r--r--src/params.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/params.c b/src/params.c
index 3b21149..70365ae 100644
--- a/src/params.c
+++ b/src/params.c
@@ -25,6 +25,18 @@
+config_param main_params[MPT_COUNT] = {
+
+ [MPT_LAST_PROJECT] = { "/OpenIDA/Editor/LastProject", CVT_STRING, false, { .string = NULL } },
+ [MPT_ELLIPSIS_HEADER] = { "/OpenIDA/Editor/Panels/ellipsis_header", CVT_INTEGER, false, { .integer = 54 } },
+ [MPT_ELLIPSIS_TAB] = { "/OpenIDA/Editor/Panels/ellipsis_tab", CVT_INTEGER, false, { .integer = 35 } },
+
+ [MPT_AUTO_SAVE] = { "/OpenIDA/Project/Autosave", CVT_BOOLEAN, false, { .boolean = true } },
+
+};
+
+
+
/******************************************************************************
* *
* Paramètres : config = éventuelle configuration à définir comme principale.*