summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/codegen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.py b/src/codegen.py
index fb49ee3..647421e 100644
--- a/src/codegen.py
+++ b/src/codegen.py
@@ -2214,7 +2214,7 @@ def apply_annotation(iface_list, iface, method, signal, prop, arg, key, value):
target_obj = prop_obj
else:
target_obj = iface_obj
- target_obj.annotations.append(dbustypes.Annotation(key, value))
+ target_obj.annotations.insert(0, dbustypes.Annotation(key, value))
def apply_annotations(iface_list, annotation_list):