--- a/ui/common/properties.c Fri Dec 12 12:38:35 2025 +0100 +++ b/ui/common/properties.c Fri Dec 12 12:44:03 2025 +0100 @@ -179,7 +179,7 @@ break; } } - return status == CX_PROPERTIES_NO_ERROR ? 0 : 1; + return status <= CX_PROPERTIES_NO_DATA ? 0 : 1; } void uic_load_app_properties() { @@ -200,7 +200,7 @@ cxMapPut(application_properties, key, cx_strdup(value).ptr); } - if(status != CX_PROPERTIES_NO_ERROR) { + if(status > CX_PROPERTIES_NO_DATA) { fprintf(stderr, "Error: cannot load properties: %d\n", (int)status); } else { cxMapRehash(application_properties); @@ -290,7 +290,7 @@ int ret = 0; CxMapIterator i = cxMapIterator(application_properties); cx_foreach(CxMapEntry *, entry, i) { - fprintf(file, "%.*s: %s\n", (int)entry->key->len, entry->key->data, entry->value); + fprintf(file, "%.*s = %s\n", (int)entry->key->len, entry->key->data, entry->value); } cxMapRehash(application_properties);