From 178c2bf921732ca2bbf91f12f96235732a404b38 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 19 Apr 2020 18:22:11 +0200 Subject: [PATCH] Fix typo. --- profiles/actionbar/action_bar_button_entry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/actionbar/action_bar_button_entry.cpp b/profiles/actionbar/action_bar_button_entry.cpp index 1ce8832..c0ff9d7 100644 --- a/profiles/actionbar/action_bar_button_entry.cpp +++ b/profiles/actionbar/action_bar_button_entry.cpp @@ -149,7 +149,7 @@ void ActionBarButtonEntry::_bind_methods() { ClassDB::bind_method(D_METHOD("get_item_path"), &ActionBarButtonEntry::get_item_path); ClassDB::bind_method(D_METHOD("set_item_path", "value"), &ActionBarButtonEntry::set_item_path); - ADD_PROPERTY(PropertyInfo(Variant::STRING, "get_item_path"), "set_item_path", "get_item_path"); + ADD_PROPERTY(PropertyInfo(Variant::STRING, "item_path"), "set_item_path", "get_item_path"); ClassDB::bind_method(D_METHOD("from_dict", "dict"), &ActionBarButtonEntry::from_dict); ClassDB::bind_method(D_METHOD("to_dict"), &ActionBarButtonEntry::to_dict);