diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-06-08 23:41:00 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-06-08 23:48:26 +0200 |
commit | 1bdb55831dc90075665b1900b1cf4cdf1a5fe335 (patch) | |
tree | a3207f7b6b90054a26b2488640f2cc720af5aadf /tools/editor | |
parent | beabefe432bc8f6ec75f2cbdac96e055ae74f3fa (diff) |
Assetlib: Update link for renamed repository
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/asset_library_editor_plugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/editor/asset_library_editor_plugin.cpp b/tools/editor/asset_library_editor_plugin.cpp index 4e995b9315..0b16ca9545 100644 --- a/tools/editor/asset_library_editor_plugin.cpp +++ b/tools/editor/asset_library_editor_plugin.cpp @@ -1318,10 +1318,10 @@ EditorAssetLibrary::EditorAssetLibrary(bool p_templates_only) { search_hb2->add_child( memnew( Label(TTR("Site:")+" "))); repository = memnew( OptionButton ); - repository->add_item("Localhost"); // TODO: Maybe remove? - repository->set_item_metadata(0, "http://127.0.0.1/addonlib/api"); repository->add_item("Godot"); - repository->set_item_metadata(1, "http://godotengine.org/addonlib/api"); + repository->set_item_metadata(0, "http://godotengine.org/asset-library/api"); + repository->add_item("Localhost"); // TODO: Maybe remove? + repository->set_item_metadata(1, "http://127.0.0.1/asset-library/api"); repository->connect("item_selected",this,"_repository_changed"); search_hb2->add_child(repository); |