Merge pull request #74114 from dalexeev/editor-help-enable-context-menu

Enable `RichTextLabel` context menu if selection is enabled
This commit is contained in:
Yuri Sizov 2023-03-16 12:19:05 +01:00 committed by GitHub
commit ac2e82463c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 0 deletions

View file

@ -245,6 +245,7 @@ void EditorAssetLibraryItemDescription::configure(const String &p_title, int p_a
description->add_text("\n" + TTR("Description:") + "\n\n");
description->append_text(p_description);
description->set_selection_enabled(true);
description->set_context_menu_enabled(true);
set_title(p_title);
}